-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
54 lines (53 loc) · 1.42 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
cmake_minimum_required(VERSION 3.14)
# Project information
project(Leb128
VERSION 2.1.1
DESCRIPTION "Little endian base 128 variable-length encoding."
LANGUAGES CXX
)
# Add the library target
add_library(leb128 INTERFACE)
# Setup include directories
target_include_directories(leb128 PUBLIC INTERFACE src/)
# Example and unit testing if this project is built separately
if (PROJECT_NAME STREQUAL CMAKE_PROJECT_NAME)
# Add the example target
add_executable(leb128_example examples/cmake/leb128_example.cc)
# Add the includes
target_include_directories(leb128_example PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
# Link libraries to the example target
target_link_libraries(leb128_example
PRIVATE
leb128
)
# Fetch google test
include(FetchContent)
FetchContent_Declare(
googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG release-1.12.1
)
FetchContent_MakeAvailable(googletest)
enable_testing()
include(GoogleTest)
# Add the test target
add_executable(leb128_test tests/leb128_test.cc)
# Add the includes
target_include_directories(leb128_test PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
# Link libraries to the test target
target_link_libraries(leb128_test
PRIVATE
leb128
gtest_main
gtest
gmock
)
# Discover unit tests
gtest_discover_tests(leb128_test)
endif()