Skip to content
Snippets Groups Projects
Unverified Commit c367c22d authored by Justin Carpentier's avatar Justin Carpentier Committed by GitHub
Browse files

Merge pull request #293 from jcarpent/devel

Fix cross compilation
parents b0f00c61 bad0cc72
No related branches found
No related tags found
No related merge requests found
...@@ -68,7 +68,11 @@ ELSE(WIN32) ...@@ -68,7 +68,11 @@ ELSE(WIN32)
SET(LINK create_symlink) SET(LINK create_symlink)
ENDIF(WIN32) ENDIF(WIN32)
set(PYTHON_COMPONENTS Interpreter Development.Module NumPy) if(CMAKE_CROSSCOMPILING)
set(PYTHON_COMPONENTS Interpreter NumPy)
else()
set(PYTHON_COMPONENTS Interpreter Development.Module NumPy)
endif()
FINDPYTHON() FINDPYTHON()
IF(WIN32) IF(WIN32)
......
Subproject commit 9d20c6f79ef9f717ea9e8c549ec2d239b8d406a3 Subproject commit acedbab3743d87368d6fca446d85d35ba0c3f1b8
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment