14 lines
No EOL
291 B
CMake
14 lines
No EOL
291 B
CMake
add_executable(mach_detours_tests
|
|
test.cpp)
|
|
|
|
add_library(mach_detours_test_func SHARED
|
|
test_func.c
|
|
test_func.h
|
|
)
|
|
|
|
target_link_libraries(mach_detours_tests
|
|
PRIVATE
|
|
mach_detours
|
|
Catch2::Catch2WithMain
|
|
mach_detours_test_func
|
|
) |