mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
17 lines
609 B
CMake
17 lines
609 B
CMake
ADD_LIBRARY(osquery_config
|
|
config.cpp
|
|
plugins/filesystem.cpp
|
|
)
|
|
TARGET_LINK_LIBRARIES(osquery_config boost_filesystem)
|
|
TARGET_LINK_LIBRARIES(osquery_config boost_system)
|
|
TARGET_LINK_LIBRARIES(osquery_config boost_thread-mt)
|
|
TARGET_LINK_LIBRARIES(osquery_config gflags)
|
|
TARGET_LINK_LIBRARIES(osquery_config glog)
|
|
TARGET_LINK_LIBRARIES(osquery_config "-Wl,-all_load")
|
|
|
|
ADD_EXECUTABLE(config_tests config_tests.cpp)
|
|
TARGET_LINK_LIBRARIES(config_tests gtest)
|
|
TARGET_LINK_LIBRARIES(config_tests osquery_config)
|
|
TARGET_LINK_LIBRARIES(config_tests osquery_core)
|
|
TARGET_LINK_LIBRARIES(config_tests osquery_sqlite)
|