Warning, /acts/cmake/ActsCreateSetup.cmake is written in an unsupported language. File is not indexed.
0001 # Create a setup.sh file at the install prefix to setup the shell environment
0002 configure_file(
0003 ${CMAKE_CURRENT_LIST_DIR}/setup.sh.in
0004 ${PROJECT_BINARY_DIR}/this_acts.sh
0005 @ONLY
0006 )
0007 install(
0008 FILES ${PROJECT_BINARY_DIR}/this_acts.sh
0009 DESTINATION ${CMAKE_INSTALL_BINDIR}
0010 )
0011
0012 configure_file(
0013 ${CMAKE_CURRENT_LIST_DIR}/setup_withdeps.sh.in
0014 ${PROJECT_BINARY_DIR}/this_acts_withdeps.sh
0015 @ONLY
0016 )
0017 install(
0018 FILES ${PROJECT_BINARY_DIR}/this_acts_withdeps.sh
0019 DESTINATION ${CMAKE_INSTALL_BINDIR}
0020 )