-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
36 lines (27 loc) · 830 Bytes
/
CMakeLists.txt
File metadata and controls
36 lines (27 loc) · 830 Bytes
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
cmake_minimum_required(VERSION 3.5)
project(bitmanip LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(HEADER_DIR include/bitmanip)
set(TEST_DIR test)
add_executable(bitmanip_test
${TEST_DIR}/main.cpp
${TEST_DIR}/test_bit.cpp
${TEST_DIR}/test_bitileave.cpp
${TEST_DIR}/test_intdiv.cpp
${TEST_DIR}/test_intlog.cpp
${TEST_DIR}/test.cpp
${TEST_DIR}/test.hpp
${TEST_DIR}/assert.cpp
${TEST_DIR}/assert.hpp
${HEADER_DIR}/all.hpp
${HEADER_DIR}/build.hpp
${HEADER_DIR}/builtin.hpp
${HEADER_DIR}/bit.hpp
${HEADER_DIR}/bitcount.hpp
${HEADER_DIR}/bitileave.hpp
${HEADER_DIR}/bitrev.hpp
${HEADER_DIR}/bitrot.hpp
${HEADER_DIR}/intdiv.hpp
${HEADER_DIR}/intlog.hpp)
target_include_directories(bitmanip_test PUBLIC include/)