athena/atdna/CMakeLists.txt

203 lines
5.8 KiB
CMake
Raw Normal View History

2015-08-03 01:42:47 +00:00
###############
# ATDNA Build #
###############
2017-12-07 04:07:33 +00:00
if(NOT CMAKE_CROSSCOMPILING)
2019-07-20 04:19:44 +00:00
string(REPLACE -stdlib=libc++ "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
get_directory_property(ATDNA_DEFINES COMPILE_DEFINITIONS)
list(REMOVE_ITEM ATDNA_DEFINES _GLIBCXX_DEBUG=1)
set_directory_properties(PROPERTIES COMPILE_DEFINITIONS "${ATDNA_DEFINES}")
2015-08-03 01:42:47 +00:00
# Find dependencies
include(FindLLVM.cmake)
if(NOT LLVM_FOUND)
2015-11-17 20:37:08 +00:00
message(STATUS "Unable to locate LLVM installation; skipping atdna")
2015-08-03 01:42:47 +00:00
else()
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
option(ATDNA_DYNAMIC_LLVM "Use dynamic library targets when linking LLVM" ON)
else()
option(ATDNA_DYNAMIC_LLVM "Use dynamic library targets when linking LLVM" OFF)
2016-12-11 20:18:12 +00:00
endif()
if(ATDNA_DYNAMIC_LLVM)
2020-04-22 10:36:08 +00:00
find_library(CLANGCPP_LIB clang-cpp HINTS "${LLVM_ROOT_DIR}/lib")
if (NOT CLANGCPP_LIB)
2020-09-06 05:39:12 +00:00
list(APPEND LLVM_LIBS
clangFrontend
clangTooling
clangDriver
clangSerialization
clangParse
clangSema
clangAnalysis
clangEdit
clangAST
clangLex
clangBasic
LLVM)
else()
2020-04-22 10:36:08 +00:00
list(APPEND LLVM_LIBS
clang-cpp
LLVM)
2020-09-06 05:39:12 +00:00
endif()
else()
find_library(LLVMDEMANGLE_LIB LLVMDemangle HINTS "${LLVM_ROOT_DIR}/lib")
find_library(LLVMBINARYFORMAT_LIB LLVMBinaryFormat HINTS "${LLVM_ROOT_DIR}/lib")
if (NOT LLVMDEMANGLE_LIB)
set(LLVMDEMANGLE_LIB "")
endif()
if (NOT LLVMBINARYFORMAT_LIB)
set(LLVMBINARYFORMAT_LIB "")
endif()
2020-04-22 10:36:08 +00:00
find_library(CLANG_CPP_LIB clang-cpp HINTS "${LLVM_ROOT_DIR}/lib")
if (NOT CLANG_CPP_LIB)
list(APPEND CLANG_LIBS
clangFrontend
clangTooling
clangDriver
clangSerialization
clangParse
clangSema
clangAnalysis
clangEdit
clangAST
clangLex
clangBasic)
else()
list(APPEND CLANG_LIBS
clang-cpp)
endif()
list(APPEND LLVM_LIBS
2020-04-22 10:36:08 +00:00
${CLANG_LIBS}
LLVMCore
LLVMOption
LLVMMCParser
LLVMBitReader
${LLVMBINARYFORMAT_LIB}
LLVMMC
LLVMProfileData
LLVMSupport
LLVMRemarks
LLVMBitStreamReader
2020-09-06 05:39:12 +00:00
${LLVMDEMANGLE_LIB}
LLVMFrontendOpenMP)
endif()
2016-06-27 22:54:55 +00:00
string(FIND ${LLVM_VERSION_STRING} "svn" SVN_FILTER_IDX)
if(NOT SVN_FILTER_IDX EQUAL -1)
string(SUBSTRING ${LLVM_VERSION_STRING} 0 ${SVN_FILTER_IDX} LLVM_VERSION_BASE)
else()
set(LLVM_VERSION_BASE ${LLVM_VERSION_STRING})
endif()
set(CLANG_INCLUDE_DIR ${LLVM_LIBRARY_DIRS}/clang/${LLVM_VERSION_BASE}/include
CACHE PATH "Clang include dir" FORCE)
2015-08-03 01:42:47 +00:00
if(UNIX)
2016-09-10 23:38:44 +00:00
list(APPEND PLAT_LIBS z pthread curses)
if (APPLE)
2015-09-12 18:25:58 +00:00
list(APPEND PLAT_LIBS dl)
2016-09-10 23:38:44 +00:00
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
2017-10-31 03:50:44 +00:00
list(APPEND PLAT_LIBS dl tinfo)
2016-09-10 23:38:44 +00:00
endif()
elseif(WIN32)
list(APPEND PLAT_LIBS Version)
2015-08-03 01:42:47 +00:00
endif()
# Offer the user the choice of overriding the installation directories
set(INSTALL_INCLUDE_DIR include CACHE PATH "Installation directory for header files")
set(INSTALL_BIN_DIR bin CACHE PATH "Installation directory for executables")
if(WIN32 AND NOT CYGWIN)
set(INSTALL_CMAKE_DIR cmake)
else()
set(INSTALL_CMAKE_DIR lib/cmake/atdna)
endif()
# Make relative paths absolute (needed later on)
foreach(p BIN INCLUDE CMAKE)
set(var INSTALL_${p}_DIR)
if(NOT IS_ABSOLUTE "${${var}}")
set(ABS_${var} "${CMAKE_INSTALL_PREFIX}/${${var}}")
else()
set(ABS_${var} "${${var}}")
endif()
endforeach()
# Windows resource
if(WIN32)
configure_file(main.rc.in main.rc @ONLY)
set(PLAT_SRCS ${CMAKE_CURRENT_BINARY_DIR}/main.rc)
endif()
# ATDNA target
add_executable(atdna main.cpp test.hpp ${PLAT_SRCS})
target_link_libraries(atdna ${LLVM_LIBS} ${PLAT_LIBS})
target_compile_definitions(atdna PRIVATE
INSTALL_PREFIX=${ABS_INSTALL_BIN_DIR}
__STDC_LIMIT_MACROS=1
__STDC_CONSTANT_MACROS=1
ATDNA_ARGV0=${LLVM_ROOT_DIR}/bin/clang-tool)
target_include_directories(atdna PRIVATE ${LLVM_INCLUDE_DIRS})
target_link_directories(atdna PRIVATE ${LLVM_LIBRARY_DIRS})
2020-09-06 05:39:12 +00:00
# Clang 10.0.x headers currently broken with C++20
set_property(TARGET atdna PROPERTY CXX_STANDARD 17)
2015-08-03 01:42:47 +00:00
if(MSVC)
# Allow linking against release-built LLVM libraries
target_compile_options(atdna PRIVATE /GR- /D_ITERATOR_DEBUG_LEVEL=0)
set_property(TARGET atdna PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreadedDLL")
2015-08-03 01:42:47 +00:00
else()
2019-08-31 20:35:50 +00:00
target_compile_options(atdna PRIVATE -fno-rtti -Wno-error)
2015-08-03 01:42:47 +00:00
endif()
# Define installs
install(TARGETS atdna DESTINATION ${INSTALL_BIN_DIR} EXPORT atdnaTargets COMPONENT atdna)
2016-03-04 23:00:12 +00:00
install(DIRECTORY ${CLANG_INCLUDE_DIR}/ DESTINATION ${INSTALL_INCLUDE_DIR}/athena/clang COMPONENT atdna)
2015-08-03 01:42:47 +00:00
##################
# Package Export #
##################
# Add all targets to the build-tree export set
2017-12-07 04:07:33 +00:00
export(TARGETS atdna FILE "${CMAKE_CURRENT_BINARY_DIR}/atdnaTargets.cmake")
2015-08-03 01:42:47 +00:00
# Export the package for use from the build-tree
# (this registers the build-tree with a global CMake-registry)
export(PACKAGE atdna)
# Create the atdnaConfig.cmake
# ... for the build tree
2017-12-07 04:07:33 +00:00
configure_file(atdnaConfig.cmake.in "${CMAKE_CURRENT_BINARY_DIR}/atdnaConfig.cmake" @ONLY)
2015-08-03 01:42:47 +00:00
# ... for the install tree
2017-12-07 04:07:33 +00:00
configure_file(atdnaConfig.cmake.in "${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/atdnaConfig.cmake" @ONLY)
2015-08-03 01:42:47 +00:00
# ... for both
2017-12-07 04:07:33 +00:00
configure_file(atdnaConfigVersion.cmake.in "${CMAKE_CURRENT_BINARY_DIR}/atdnaConfigVersion.cmake" @ONLY)
2015-08-03 01:42:47 +00:00
# Install atdnaConfig.cmake
install(FILES
2017-12-07 04:07:33 +00:00
"${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/atdnaConfig.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/atdnaConfigVersion.cmake"
2015-08-03 01:42:47 +00:00
DESTINATION ${INSTALL_CMAKE_DIR} COMPONENT atdna)
# Install the export set for use with the install-tree
install(EXPORT atdnaTargets DESTINATION ${INSTALL_CMAKE_DIR} COMPONENT atdna)
#########
# CTest #
#########
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
2015-08-03 01:42:47 +00:00
enable_testing()
2016-09-10 23:38:44 +00:00
add_test(NAME test-dna COMMAND $<TARGET_FILE:atdna> -o test.cpp
"-I${ATHENA_INCLUDE_DIR}" ${CMAKE_SOURCE_DIR}/test.hpp)
endif()
2015-08-03 01:42:47 +00:00
endif()
include(atdnaHelpers.cmake)
2017-12-07 04:07:33 +00:00
endif()