2025-10-01 23:07:06 +02:00
|
|
|
add_executable(mach_detours_tests
|
|
|
|
|
test.cpp)
|
|
|
|
|
|
2025-10-01 23:46:55 +02:00
|
|
|
add_library(mach_detours_test_func SHARED
|
|
|
|
|
test_func.c
|
|
|
|
|
test_func.h
|
|
|
|
|
)
|
|
|
|
|
|
2025-10-01 23:07:06 +02:00
|
|
|
target_link_libraries(mach_detours_tests
|
2025-10-01 23:46:55 +02:00
|
|
|
PRIVATE
|
|
|
|
|
mach_detours
|
|
|
|
|
Catch2::Catch2WithMain
|
|
|
|
|
mach_detours_test_func
|
2025-10-01 23:07:06 +02:00
|
|
|
)
|