Back to home page

EIC code displayed by LXR

 
 

    


Warning, /acts/cmake/ActsCreateSetup.cmake is written in an unsupported language. File is not indexed.

0001 unset(IS_INSTALLED_VERSION CACHE)
0002 
0003 configure_file(
0004     ${CMAKE_CURRENT_LIST_DIR}/setup.sh.in
0005     ${PROJECT_BINARY_DIR}/this_acts.sh
0006     @ONLY
0007 )
0008 configure_file(
0009     ${CMAKE_CURRENT_LIST_DIR}/setup_withdeps.sh.in
0010     ${PROJECT_BINARY_DIR}/this_acts_withdeps.sh
0011     @ONLY
0012 )
0013 
0014 set(IS_INSTALLED_VERSION ON)
0015 
0016 configure_file(
0017     ${CMAKE_CURRENT_LIST_DIR}/setup.sh.in
0018     ${PROJECT_BINARY_DIR}/install_this_acts.sh
0019     @ONLY
0020 )
0021 install(
0022     FILES ${PROJECT_BINARY_DIR}/install_this_acts.sh
0023     DESTINATION ${CMAKE_INSTALL_BINDIR}
0024     RENAME this_acts.sh
0025 )
0026 
0027 configure_file(
0028     ${CMAKE_CURRENT_LIST_DIR}/setup_withdeps.sh.in
0029     ${PROJECT_BINARY_DIR}/install_this_acts_withdeps.sh
0030     @ONLY
0031 )
0032 install(
0033     FILES ${PROJECT_BINARY_DIR}/install_this_acts_withdeps.sh
0034     DESTINATION ${CMAKE_INSTALL_BINDIR}
0035     RENAME this_acts_withdeps.sh
0036 )
0037 
0038 unset(IS_INSTALLED_VERSION CACHE)