-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from krasznaa/PythonUsageFix-master-20181023
Python Usage Fixes, master branch (2018.10.23.)
- Loading branch information
Showing
3 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
# Auto generate the code for the vector signatures and if needed preload | ||
|
||
# We need Python for the following. | ||
find_package (PythonInterp REQUIRED) | ||
|
||
# Generate the code for the lib | ||
if (PRELOAD) | ||
set (SIGGENOPTS " -p") | ||
else() | ||
set (SIGGENOPTS " ") | ||
endif() | ||
EXEC_PROGRAM ("cd src;python ${CMAKE_SOURCE_DIR}/src/signatures_generator.py ${SIGGENOPTS} -o ${CMAKE_SOURCE_DIR}/src;cd -") | ||
EXEC_PROGRAM ("cd src;${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/src/signatures_generator.py ${SIGGENOPTS} -o ${CMAKE_SOURCE_DIR}/src;cd -") | ||
|
||
#generare Vc wrapper and config file | ||
if(USE_VC) | ||
EXEC_PROGRAM ("cd src;python vc_wrapper_generator.py;cd -") | ||
EXEC_PROGRAM ("cd src;${PYTHON_EXECUTABLE} vc_wrapper_generator.py;cd -") | ||
endif(USE_VC) | ||
configure_file( ${INC_DIR}/externalLibcfg.h.cmake ${INC_DIR}/externalLibcfg.h) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#! /usr/bin/python | ||
#!/usr/bin/env python | ||
|
||
""" | ||
Generates numpy wrapper - both header and .cc file | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#! /usr/bin/python | ||
#!/usr/bin/env python | ||
|
||
""" | ||
Generates vc wrapper - both header and .cc file | ||
|