forked from johnmcfarlane/fixed_point
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
35 lines (32 loc) · 1.18 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
project(fixed_point)
# CMake 2.8.11 is required by Google Benchmarks
cmake_minimum_required(VERSION 2.8.11)
add_library(fixed_point INTERFACE)
target_sources(fixed_point INTERFACE
include/sg14/auxiliary/boost.simd.h
include/sg14/auxiliary/boost.multiprecision.h
include/sg14/auxiliary/elastic_integer.h
include/sg14/auxiliary/elastic_fixed_point.h
include/sg14/auxiliary/numeric.h
include/sg14/auxiliary/overflow.h
include/sg14/auxiliary/safe_integer.h
include/sg14/bits/fixed_point_math.h
include/sg14/bits/fixed_point_operators.h
include/sg14/bits/fixed_point_make.h
include/sg14/bits/fixed_point_arithmetic.h
include/sg14/bits/fixed_point_type.h
include/sg14/bits/fixed_point_common_type.h
include/sg14/bits/fixed_point_named.h
include/sg14/bits/fixed_point_extras.h
include/sg14/bits/common.h
include/sg14/bits/config.h
include/sg14/cstdint
include/sg14/fixed_point
include/sg14/limits
include/sg14/type_traits
)
include_directories(SYSTEM ${CMAKE_CURRENT_LIST_DIR})
install(
DIRECTORY include/sg14
DESTINATION include
)