-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
66 lines (51 loc) · 1.88 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
cmake_minimum_required(VERSION 3.14)
project(eminem
VERSION 1.0.0
DESCRIPTION "Matrix Market parser"
LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
add_library(eminem INTERFACE)
add_library(tatami::eminem ALIAS eminem)
option(EMINEM_FETCH_EXTERN "Automatically fetch eminem's external dependencies." ON)
if(EMINEM_FETCH_EXTERN)
add_subdirectory(extern)
else()
find_package(ltla_byteme CONFIG REQUIRED)
endif()
target_link_libraries(eminem INTERFACE ltla::byteme)
# Switch between include directories depending on whether the downstream is
# using the build directly or is using the installed package.
include(GNUInstallDirs)
target_include_directories(eminem
INTERFACE
"$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>"
"$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/tatami_eminem>"
)
# Building the test-related machinery, if we are compiling this library directly.
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
option(EMINEM_TESTS "Build eminem's test suite." ON)
else()
option(EMINEM_TESTS "Build eminem's test suite." OFF)
endif()
if(EMINEM_TESTS)
include(CTest)
if(BUILD_TESTING)
add_subdirectory(tests)
endif()
add_subdirectory(perf)
endif()
# Installing for find_package.
include(CMakePackageConfigHelpers)
install(DIRECTORY include/
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/tatami_eminem)
install(TARGETS eminem
EXPORT eminemTargets)
install(EXPORT eminemTargets
FILE tatami_eminemTargets.cmake
NAMESPACE tatami::
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/tatami_eminem)
configure_package_config_file(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Config.cmake.in
"${CMAKE_CURRENT_BINARY_DIR}/tatami_eminemConfig.cmake"
INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/tatami_eminem)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/tatami_eminemConfig.cmake"
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/tatami_eminem)