11 lines
295 B
CMake
11 lines
295 B
CMake
|
get_filename_component(rootdir "$ENV{DESTDIR}" ABSOLUTE)
|
||
|
if(rootdir STREQUAL "")
|
||
|
set(rootdir /)
|
||
|
endif()
|
||
|
execute_process(
|
||
|
COMMAND "@PYTHON_EXECUTABLE@" setup.py install
|
||
|
--skip-build
|
||
|
--root=${rootdir} --prefix=${CMAKE_INSTALL_PREFIX}
|
||
|
WORKING_DIRECTORY "@CMAKE_CURRENT_BINARY_DIR@"
|
||
|
)
|