1
0
Fork 0
mirror of https://github.com/gwm17/catima.git synced 2024-11-22 10:18:50 -05:00
This commit is contained in:
Andrej Prochazka 2021-05-19 19:08:59 +02:00
parent 84a49679a9
commit 62e5028887

View File

@ -5,14 +5,16 @@ from setuptools import setup
DIR = Path(__file__).parents[0]
SRC = [str(DIR/'pycatima.cpp')]+[str(fname.resolve()) for fname in DIR.glob('../*.cpp')]
SRCG = [str(fname.resolve()) for fname in DIR.glob('../global/*.c')]
SRC += SRCG
SRC = [str((DIR/'pycatima.cpp').resolve())]#+[str(fname.resolve()) for fname in DIR.glob('../*.cpp')]
#SRCG = [str(fname.resolve()) for fname in DIR.glob('../global/*.c')]
#SRC += SRCG
print (SRC)
example_module = Pybind11Extension(
'pycatima',
SRC,
include_dirs=['../build/include','../global']
include_dirs=['../build/include','../global'],
library_dirs=['../build/lib','../build'],
libraries=['catima']
)
setup(