File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,12 @@ find_program(CYTHON_EXECUTABLE cython)
9
9
10
10
# Figure out installation path
11
11
execute_process (COMMAND
12
- ${PYTHON_EXECUTABLE} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(prefix='${CMAKE_INSTALL_PREFIX} ')"
12
+ ${PYTHON_EXECUTABLE} -c "from distutils.sysconfig import get_python_lib; print( get_python_lib(prefix='${CMAKE_INSTALL_PREFIX} ') )"
13
13
OUTPUT_VARIABLE PYTHON_SITE_PACKAGES OUTPUT_STRIP_TRAILING_WHITESPACE)
14
14
15
15
# Figure out numpy include path
16
16
execute_process (COMMAND
17
- ${PYTHON_EXECUTABLE} -c "import numpy; print numpy.get_include()"
17
+ ${PYTHON_EXECUTABLE} -c "import numpy; print( numpy.get_include() )"
18
18
OUTPUT_VARIABLE NUMPY_INCLUDE_PATH OUTPUT_STRIP_TRAILING_WHITESPACE)
19
19
20
20
# How to Cython the .pyx file
You can’t perform that action at this time.
0 commit comments