mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 10:23:54 +00:00
18 lines
392 B
CMake
18 lines
392 B
CMake
if(APPLE)
|
|
ADD_OSQUERY_OBJCXX_LIBRARY(osquery_filesystem_objc
|
|
darwin/plist.mm
|
|
)
|
|
|
|
ADD_OSQUERY_LINK("-framework Foundation")
|
|
endif()
|
|
|
|
ADD_OSQUERY_LIBRARY(osquery_filesystem
|
|
filesystem.cpp
|
|
)
|
|
|
|
ADD_OSQUERY_TEST(filesystem_tests filesystem_tests.cpp)
|
|
if(APPLE)
|
|
ADD_OSQUERY_TEST(plist_tests darwin/plist_tests.cpp)
|
|
ADD_OSQUERY_TEST(plist_benchmark darwin/plist_benchmark.cpp)
|
|
endif()
|