forked from gvinciguerra/PGM-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
45 lines (34 loc) · 1.09 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
cmake_minimum_required(VERSION 3.12)
project(PiecewiseGeometricModelIndex
VERSION 1.0
HOMEPAGE_URL https://github.com/gvinciguerra/PGM-index)
option(BUILD_EXAMPLES "Build the examples" ON)
option(BUILD_PGM_TUNER "Build the tuner target" ON)
option(BUILD_PGM_BENCHMARK "Build the benchmark target" ON)
set(CMAKE_CXX_STANDARD 17)
include(CheckCXXCompilerFlag)
check_cxx_compiler_flag("-march=native" COMPILER_SUPPORTS_MARCH_NATIVE)
if (COMPILER_SUPPORTS_MARCH_NATIVE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native")
endif ()
include_directories(include)
# PGM-index library
add_library(pgmindexlib INTERFACE)
target_include_directories(pgmindexlib INTERFACE include/)
find_package(OpenMP)
if (OpenMP_CXX_FOUND)
message(STATUS "OpenMP found")
target_link_libraries(pgmindexlib INTERFACE OpenMP::OpenMP_CXX)
endif ()
if (BUILD_PGM_TUNER)
add_subdirectory(tuner)
endif ()
if (BUILD_EXAMPLES)
add_subdirectory(examples)
endif ()
if (BUILD_PGM_BENCHMARK)
add_subdirectory(benchmark)
endif ()
add_subdirectory(c-interface)
enable_testing()
add_subdirectory(test)