mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
9 lines
304 B
CMake
9 lines
304 B
CMake
set (destination ${CMAKE_INSTALL_PREFIX}/bin)
|
|
|
|
install(PROGRAMS ert_module DESTINATION ${destination})
|
|
|
|
if (INSTALL_GROUP)
|
|
install(CODE "EXECUTE_PROCESS(COMMAND chgrp ${INSTALL_GROUP} ${destination}/ert_module)")
|
|
install(CODE "EXECUTE_PROCESS(COMMAND chmod g+w ${destination}/ert_module)")
|
|
endif()
|