mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: nel-config installation problem with some CMake versions
This commit is contained in:
parent
92a682bc1b
commit
db4a4dc862
1 changed files with 3 additions and 3 deletions
|
@ -58,8 +58,8 @@ ENDIF(WITH_GTK)
|
||||||
IF(UNIX)
|
IF(UNIX)
|
||||||
SET(prefix ${CMAKE_INSTALL_PREFIX})
|
SET(prefix ${CMAKE_INSTALL_PREFIX})
|
||||||
SET(exec_prefix ${CMAKE_INSTALL_PREFIX}/bin)
|
SET(exec_prefix ${CMAKE_INSTALL_PREFIX}/bin)
|
||||||
SET(libdir "${CMAKE_INSTALL_PREFIX}/lib")
|
SET(libdir ${CMAKE_INSTALL_PREFIX}/lib)
|
||||||
SET(includedir "${CMAKE_INSTALL_PREFIX}/include")
|
SET(includedir ${CMAKE_INSTALL_PREFIX}/include)
|
||||||
SET(enable_ligo ${WITH_LIGO})
|
SET(enable_ligo ${WITH_LIGO})
|
||||||
SET(enable_logic ${WITH_LOGIC})
|
SET(enable_logic ${WITH_LOGIC})
|
||||||
SET(enable_georges ${WITH_GEORGES})
|
SET(enable_georges ${WITH_GEORGES})
|
||||||
|
@ -67,7 +67,7 @@ IF(UNIX)
|
||||||
SET(enable_3d ${WITH_3D})
|
SET(enable_3d ${WITH_3D})
|
||||||
SET(enable_pacs ${WITH_PACS})
|
SET(enable_pacs ${WITH_PACS})
|
||||||
SET(enable_sound ${WITH_SOUND})
|
SET(enable_sound ${WITH_SOUND})
|
||||||
CONFIGURE_FILE(nel-config.in nel-config)
|
CONFIGURE_FILE(nel-config.in ${CMAKE_CURRENT_BINARY_DIR}/nel-config)
|
||||||
|
|
||||||
INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/nel-config DESTINATION bin)
|
INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/nel-config DESTINATION bin)
|
||||||
ENDIF(UNIX)
|
ENDIF(UNIX)
|
||||||
|
|
Loading…
Reference in a new issue