Skip to content
Snippets Groups Projects
Verified Commit 7631a42f authored by Justin Carpentier's avatar Justin Carpentier
Browse files

cmake: do not build *.pyc on WIN32

parent 1907dad3
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,9 @@ SET(PYTHON_FILES
)
FOREACH(python ${PYTHON_FILES})
PYTHON_BUILD(${PROJECT_NAME} ${python})
IF(NOT WIN32)
PYTHON_BUILD(${PROJECT_NAME} ${python})
ENDIF()
INSTALL(FILES
"${CMAKE_CURRENT_SOURCE_DIR}/eigenpy/${python}"
DESTINATION ${${PYWRAP}_INSTALL_DIR})
......
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