Skip to content

Commit

Permalink
[CMake] Correct variable definition
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarpent committed Sep 28, 2016
1 parent c3ab338 commit 9c3e0a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bindings/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ FOREACH(dep ${PKG_CONFIG_PYWRAP_REQUIRES})
ENDFOREACH(dep ${PKG_CONFIG_PYWRAP_REQUIRES})

# --- LIBRARY --- #
SET(${PYWRAP}_INSTALL_DIR "${PYTHON_SITELIB}/${PROJECT_NAME}")
SET(${PYWRAP}_INSTALL_DIR ${PYTHON_SITELIB}/${PROJECT_NAME})
MESSAGE(STATUS ${${PYWRAP}_INSTALL_DIR})

SET(${PROJECT_NAME}_PYTHON_HEADERS
eigen_container.hpp
Expand Down

0 comments on commit 9c3e0a5

Please sign in to comment.