Skip to content
Snippets Groups Projects
Commit e3e7cde2 authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

Bug 1619: PythonInstall now defines PYTHON_BUILD_DIR, so it should be included...

Bug 1619: PythonInstall now defines PYTHON_BUILD_DIR, so it should be included early. Furthermore, PYTHON_BUILD_DIR and PYTHON_INSTALL_DIR must be FORCEd into the cache.
parent 844fff43
No related branches found
No related tags found
No related merge requests found
# $Id$ # $Id$
include(LofarPackageVersion) include(LofarPackageVersion)
include(PythonInstall)
# Add current build directory to the include path. This is needed, because # Add current build directory to the include path. This is needed, because
# pyparmdb.cc #include's Package__Version.cc (yucky!). # pyparmdb.cc #include's Package__Version.cc (yucky!).
...@@ -24,5 +25,4 @@ lofar_add_library(lofar_pyparmdb Package__Version.cc) ...@@ -24,5 +25,4 @@ lofar_add_library(lofar_pyparmdb Package__Version.cc)
lofar_add_bin_program(versionpyparmdb versionpyparmdb.cc) lofar_add_bin_program(versionpyparmdb versionpyparmdb.cc)
# Install Python modules # Install Python modules
include(PythonInstall)
python_install(__init__.py DESTINATION lofar/parmdb) python_install(__init__.py DESTINATION lofar/parmdb)
...@@ -42,9 +42,9 @@ if(PYTHON_EXECUTABLE) ...@@ -42,9 +42,9 @@ if(PYTHON_EXECUTABLE)
message(FATAL_ERROR "Python command failed:\n${_pyerr}") message(FATAL_ERROR "Python command failed:\n${_pyerr}")
endif(_pyerr) endif(_pyerr)
set(PYTHON_BUILD_DIR "${CMAKE_BINARY_DIR}/${_pydir}" CACHE PATH set(PYTHON_BUILD_DIR "${CMAKE_BINARY_DIR}/${_pydir}" CACHE PATH
"Build directory for Python extensions") "Build directory for Python extensions" FORCE)
set(PYTHON_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/${_pydir}" CACHE PATH set(PYTHON_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/${_pydir}" CACHE PATH
"Installation directory for Python extensions") "Installation directory for Python extensions" FORCE)
endif(PYTHON_EXECUTABLE) endif(PYTHON_EXECUTABLE)
......
# $Id$ # $Id$
include(LofarPackageVersion) include(LofarPackageVersion)
include(PythonInstall)
# Add current build directory to the include path. This is needed, because # Add current build directory to the include path. This is needed, because
# pyparameterset.cc #include's Package__Version.cc (yucky!). # pyparameterset.cc #include's Package__Version.cc (yucky!).
...@@ -24,5 +25,4 @@ lofar_add_library(lofar_pyparameterset Package__Version.cc) ...@@ -24,5 +25,4 @@ lofar_add_library(lofar_pyparameterset Package__Version.cc)
lofar_add_bin_program(versionpyparameterset versionpyparameterset.cc) lofar_add_bin_program(versionpyparameterset versionpyparameterset.cc)
# Install Python modules # Install Python modules
include(PythonInstall)
python_install(__init__.py DESTINATION lofar/parameterset) python_install(__init__.py DESTINATION lofar/parameterset)
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