mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
24 lines
451 B
Text
24 lines
451 B
Text
|
add_library(supervisor_call_monitor STATIC
|
||
|
mach_system_call_log_handler.cc
|
||
|
system_call_log_handler.cc
|
||
|
supervisor_call_monitor.cc
|
||
|
sensitive_api_monitor.cc
|
||
|
misc_utility.cc
|
||
|
)
|
||
|
target_link_libraries(supervisor_call_monitor
|
||
|
misc_helper
|
||
|
dobby
|
||
|
)
|
||
|
|
||
|
add_library(test_supervisor_call_monitor SHARED
|
||
|
test_supervisor_call_monitor.cc
|
||
|
)
|
||
|
target_link_libraries(test_supervisor_call_monitor
|
||
|
supervisor_call_monitor
|
||
|
)
|
||
|
|
||
|
include_directories(
|
||
|
.
|
||
|
)
|
||
|
|