add test case

This commit is contained in:
Lysann Tranvouez 2025-10-01 23:46:55 +02:00
parent 7c9b945386
commit 4947fb5553
4 changed files with 67 additions and 1 deletions

View file

@ -1,6 +1,14 @@
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 Catch2::Catch2WithMain mach_detours
PRIVATE
mach_detours
Catch2::Catch2WithMain
mach_detours_test_func
)