mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 10:23:54 +00:00
11 lines
262 B
CMake
11 lines
262 B
CMake
|
ADD_LIBRARY(osquery_dispatcher OBJECT
|
||
|
dispatcher.cpp
|
||
|
)
|
||
|
SET_OSQUERY_COMPILE(osquery_dispatcher)
|
||
|
|
||
|
ADD_LIBRARY(osquery_dispatcher_testing
|
||
|
$<TARGET_OBJECTS:osquery_dispatcher>
|
||
|
)
|
||
|
|
||
|
ADD_OSQUERY_TEST(dispatcher_tests dispatcher_tests.cpp osquery_dispatcher_testing)
|