2018-03-26 00:31:39 +02:00
|
|
|
file(GLOB_RECURSE sources *.cpp)
|
2018-03-22 18:11:39 +01:00
|
|
|
add_library(app4triqs_c ${sources})
|
|
|
|
|
2018-03-26 00:31:39 +02:00
|
|
|
# Link against triqs and use headers with SYSTEM flag for better warning messages
|
2018-03-22 18:11:39 +01:00
|
|
|
target_link_libraries(app4triqs_c PUBLIC triqs)
|
2018-03-25 19:57:55 +02:00
|
|
|
target_include_directories(app4triqs_c SYSTEM PUBLIC ${TRIQS_ROOT}/include)
|
2018-03-26 00:31:39 +02:00
|
|
|
|
|
|
|
target_compile_options(app4triqs_c PUBLIC -std=c++17 -fPIC)
|
|
|
|
target_include_directories(app4triqs_c PUBLIC $<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}/c++>)
|
2018-03-23 16:59:38 +01:00
|
|
|
target_compile_definitions(app4triqs_c PRIVATE
|
|
|
|
APP4TRIQS_GIT_HASH=${APP4TRIQS_GIT_HASH}
|
|
|
|
TRIQS_GIT_HASH=${TRIQS_GIT_HASH}
|
2018-03-25 19:00:54 +02:00
|
|
|
$<$<CONFIG:Debug>:APP4TRIQS_DEBUG>
|
2018-03-23 16:59:38 +01:00
|
|
|
$<$<CONFIG:Debug>:TRIQS_ARRAYS_ENFORCE_BOUNDCHECK>
|
2018-03-22 18:11:39 +01:00
|
|
|
)
|
|
|
|
|
2018-03-25 19:00:54 +02:00
|
|
|
# Install library and headers
|
2018-03-23 16:59:38 +01:00
|
|
|
install(TARGETS app4triqs_c EXPORT app4triqs-targets DESTINATION lib)
|
2018-08-31 00:05:04 +02:00
|
|
|
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} DESTINATION include/app4triqs FILES_MATCHING PATTERN "*.hpp" PATTERN "*.h")
|
2018-03-25 19:00:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
# ========= Static Analyzer Checks ==========
|
|
|
|
|
2018-04-06 14:35:21 +02:00
|
|
|
option(ANALYZE_SOURCES OFF "Run static analyzer checks if found (clang-tidy, cppcheck)")
|
|
|
|
if(ANALYZE_SOURCES)
|
|
|
|
|
|
|
|
# Locate static analyzer tools
|
|
|
|
find_program(CPPCHECK_EXECUTABLE NAMES "cppcheck" PATHS ENV PATH)
|
|
|
|
find_program(CLANG_TIDY_EXECUTABLE NAMES "clang-tidy" PATHS ENV PATH)
|
2018-03-25 19:00:54 +02:00
|
|
|
|
2018-04-06 14:35:21 +02:00
|
|
|
# Run clang-tidy if found
|
|
|
|
if(CLANG_TIDY_EXECUTABLE)
|
|
|
|
message(STATUS "clang-tidy found: ${CLANG_TIDY_EXECUTABLE}")
|
|
|
|
set_target_properties(app4triqs_c PROPERTIES CXX_CLANG_TIDY "${CLANG_TIDY_EXECUTABLE}")
|
|
|
|
else()
|
|
|
|
message(STATUS "clang-tidy not found in $PATH. Please consider installing clang-tidy for additional checks!")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Run cppcheck if found
|
|
|
|
if(CPPCHECK_EXECUTABLE)
|
|
|
|
message(STATUS "cppcheck found: ${CPPCHECK_EXECUTABLE}")
|
|
|
|
add_custom_command(
|
2018-03-25 19:00:54 +02:00
|
|
|
TARGET app4triqs_c
|
|
|
|
COMMAND ${CPPCHECK_EXECUTABLE}
|
2018-04-06 14:35:21 +02:00
|
|
|
--enable=warning,style,performance,portability
|
|
|
|
--std=c++14
|
|
|
|
--template=gcc
|
|
|
|
--verbose
|
|
|
|
--quiet
|
|
|
|
${sources}
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
message(STATUS "cppcheck not found in $PATH. Please consider installing cppcheck for additional checks!")
|
|
|
|
endif()
|
|
|
|
|
2018-03-25 19:00:54 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
# ========= Dynamic Analyzer Checks ==========
|
|
|
|
|
|
|
|
# Address Sanitizer
|
|
|
|
option(ASAN OFF "Compile library and executables with LLVM Address Sanitizer")
|
|
|
|
if(ASAN)
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
|
|
message(FATAL_ERROR "Address Sanitizer Checks currently not compatible with OSX.")
|
|
|
|
endif()
|
|
|
|
list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/share/cmake)
|
|
|
|
find_package(libasan_rt REQUIRED)
|
|
|
|
target_compile_options(app4triqs_c PUBLIC -fsanitize=address -fno-omit-frame-pointer)
|
2018-03-25 19:57:55 +02:00
|
|
|
target_link_libraries(app4triqs_c INTERFACE "-fsanitize=address -fno-omit-frame-pointer -fuse-ld=gold")
|
2018-03-25 19:00:54 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Undefined Behavior Sanitizer
|
|
|
|
option(UBSAN OFF "Compile library and executables with LLVM Undefined Behavior Sanitizer")
|
|
|
|
if(UBSAN)
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
|
|
message(FATAL_ERROR "Undefined Behavior Sanitizer Checks currently not compatible with OSX.")
|
|
|
|
endif()
|
|
|
|
list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/share/cmake)
|
|
|
|
find_package(libubsan_rt REQUIRED)
|
|
|
|
target_compile_options(app4triqs_c PUBLIC -fsanitize=undefined -fno-omit-frame-pointer -fno-sanitize=vptr)
|
2018-03-25 19:57:55 +02:00
|
|
|
target_link_libraries(app4triqs_c INTERFACE "-fsanitize=undefined -fno-omit-frame-pointer -fuse-ld=gold")
|
2018-03-25 19:00:54 +02:00
|
|
|
endif()
|