python - How to specify more than one include directories for setup.py from command line? -
here found how write setup.py
file compiling own c/c++ modules python, can't specify more 1 include directories command line.
please tell me syntax how should specify list of directories command line setup.py
.
i found solution should this
python setup.py build_ext --inplace --library-dirs=lib_dir1;lib_dir2 --include-dirs=inc_dir1;inc_dir2
Comments
Post a Comment