mach-detours/tests/CMakeLists.txt
2025-10-01 23:46:55 +02:00

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
)