-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
54 lines (53 loc) · 1.43 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(Uleb128
VERSION 2.1.2
DESCRIPTION "Unsigned little endian base 128 variable-length encoding."
LANGUAGES CXX
)
# Add the library target
add_library(uleb128 INTERFACE)
# Setup include directories
target_include_directories(uleb128 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(uleb128_example examples/cmake/uleb128_example.cc)
# Add the includes
target_include_directories(uleb128_example PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
# Link libraries to the example target
target_link_libraries(uleb128_example
PRIVATE
uleb128
)
# 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(uleb128_test tests/uleb128_test.cc)
# Add the includes
target_include_directories(uleb128_test PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
# Link libraries to the test target
target_link_libraries(uleb128_test
PRIVATE
uleb128
gtest_main
gtest
gmock
)
# Discover unit tests
gtest_discover_tests(uleb128_test)
endif()