Skip to content
Snippets Groups Projects
Commit 62bd4421 authored by Cristian Lalescu's avatar Cristian Lalescu Committed by Cristian Lalescu
Browse files

install bash setup script if it exists

parent c560004a
No related branches found
No related tags found
No related merge requests found
...@@ -412,6 +412,13 @@ configure_file(${PROJECT_SOURCE_DIR}/cmake/TurTLEConfig.cmake.in ${PROJECT_BINAR ...@@ -412,6 +412,13 @@ configure_file(${PROJECT_SOURCE_DIR}/cmake/TurTLEConfig.cmake.in ${PROJECT_BINAR
install(FILES "${PROJECT_BINARY_DIR}/TurTLEConfig.cmake" DESTINATION lib/) install(FILES "${PROJECT_BINARY_DIR}/TurTLEConfig.cmake" DESTINATION lib/)
export(TARGETS TurTLE FILE "${PROJECT_BINARY_DIR}/TurTLELibraryDepends.cmake") export(TARGETS TurTLE FILE "${PROJECT_BINARY_DIR}/TurTLELibraryDepends.cmake")
install(EXPORT TURTLE_EXPORT DESTINATION lib/) install(EXPORT TURTLE_EXPORT DESTINATION lib/)
if(EXISTS "${PROJECT_BINARY_DIR}/bash_setup_for_TurTLE.sh")
install(
FILES "${PROJECT_BINARY_DIR}/bash_setup_for_TurTLE.sh"
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ
DESTINATION "lib/"
)
endif()
##################################################################################### #####################################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment