mirror of
https://github.com/triqs/dft_tools
synced 2024-12-23 12:55:17 +01:00
f2d7e84bdd
-consistent indends in all cmake files -add static analyzer checks with both cppcheck and clang-tidy -add dynamic analyzer checks with Address Sanitizer and option ASAN -add dynamic analyzer checks with Undefined Behavior Sanitizer and option UBSAN -Further Cleaning and Comments
24 lines
941 B
CMake
24 lines
941 B
CMake
add_subdirectory(cmake)
|
|
|
|
if(NOT CMAKE_INSTALL_PREFIX STREQUAL TRIQS_ROOT)
|
|
|
|
configure_file(app4triqs.modulefile.in app4triqs.modulefile @ONLY)
|
|
configure_file(app4triqsvars.sh.in app4triqsvars.sh @ONLY)
|
|
|
|
install(
|
|
FILES
|
|
${CMAKE_CURRENT_BINARY_DIR}/app4triqs.modulefile
|
|
${CMAKE_CURRENT_BINARY_DIR}/app4triqsvars.sh
|
|
DESTINATION share
|
|
)
|
|
|
|
message(STATUS "***************************************************************")
|
|
message(STATUS "* Custom install Location. Use: ")
|
|
message(STATUS "* ")
|
|
message(STATUS "* source ${CMAKE_INSTALL_PREFIX}/share/app4triqsvars.sh ")
|
|
message(STATUS "* ")
|
|
message(STATUS "* to set up the environment variables ")
|
|
message(STATUS "***************************************************************")
|
|
|
|
endif()
|