-
Notifications
You must be signed in to change notification settings - Fork 5
/
CMakeLists.txt
110 lines (92 loc) · 2.61 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
cmake_minimum_required(VERSION 3.4)
project(sold LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "RelWithDebInfo")
endif()
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
include(third-party)
get_third_party(glog)
set(WITH_GFLAGS OFF CACHE INTERNAL "" FORCE)
add_subdirectory(${CMAKE_CURRENT_BINARY_DIR}/glog ${CMAKE_CURRENT_BINARY_DIR}/glog EXCLUDE_FROM_ALL)
include_directories(${CMAKE_CURRENT_BINARY_DIR}/glog ${CMAKE_CURRENT_BINARY_DIR}/glog/src)
add_definitions(-DC10_USE_GLOG=1)
add_library(
sold_lib
sold.cc
elf_binary.cc
hash.cc
ldsoconf.cc
mprotect_builder.cc
strtab_builder.cc
symtab_builder.cc
shdr_builder.cc
utils.cc
version_builder.cc
)
add_executable(
sold
sold_main.cc
)
target_link_libraries(sold sold_lib glog)
add_executable(
print_dtrela
print_dtrela.cc
)
add_executable(renamer renamer_main.cc)
target_link_libraries(renamer sold_lib glog)
target_link_libraries(print_dtrela sold_lib glog)
add_executable(
print_dynsymtab
print_dynsymtab.cc
)
target_link_libraries(print_dynsymtab sold_lib glog)
add_executable(
print_tls
print_tls.cc
)
target_link_libraries(print_tls sold_lib glog)
add_executable(
print_version
print_version.cc
)
target_link_libraries(print_version sold_lib glog)
add_executable(
print_ehframe
print_ehframe.cc
)
target_link_libraries(print_ehframe sold_lib glog)
add_subdirectory(tests)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/CTestCustom.cmake ${CMAKE_CURRENT_BINARY_DIR})
include(CTest)
if(BUILD_TESTING)
foreach(t exe hash)
add_custom_target(
test_${t}_out ALL
COMMAND "${CMAKE_CURRENT_BINARY_DIR}/sold" "${CMAKE_CURRENT_BINARY_DIR}/tests/test_${t}" -o "${CMAKE_CURRENT_BINARY_DIR}/tests/test_${t}_out" --section-headers
DEPENDS sold test_${t}
)
add_test(
NAME ${t}_test
COMMAND ${CMAKE_CURRENT_BINARY_DIR}/tests/test_${t}_out
)
endforeach()
add_test(
NAME c++_features_test
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/tests"
COMMAND run-all-tests.sh
)
add_test(
NAME renamer
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/tests/renamer"
COMMAND test.sh)
endif()
if(SOLD_PYBIND_TEST)
get_third_party(pybind11)
add_subdirectory(${CMAKE_CURRENT_BINARY_DIR}/pybind11 ${CMAKE_CURRENT_BINARY_DIR}/pybind11 EXCLUDE_FROM_ALL)
add_subdirectory(pybind_test)
endif()
if(SOLD_LIBTORCH_TEST)
add_subdirectory(libtorch_test)
endif()