blob: 6b79d98d28289d49ab29e8f2aa4e38d4ac5d2bbe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
project(tests)
include_directories("${CMAKE_SOURCE_DIR}")
include_directories("${CMAKE_BINARY_DIR}")
add_executable(test_reloc_match test_reloc_match.c)
add_executable(test_reloc_read test_reloc_read.c)
target_link_libraries(test_reloc_match relocate)
target_link_libraries(test_reloc_read relocate)
add_test(test_reloc_match test_reloc_match)
add_test(test_reloc_read test_reloc_read)
|