mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
13 lines
308 B
CMake
13 lines
308 B
CMake
ADD_OSQUERY_LIBRARY(TRUE osquery_database
|
|
database.cpp
|
|
)
|
|
|
|
# osquery_database_internal should be an 'additional' CORE=False lib
|
|
ADD_OSQUERY_LIBRARY(TRUE osquery_database_internal
|
|
db_handle.cpp
|
|
query.cpp
|
|
)
|
|
|
|
file(GLOB OSQUERY_DATABASE_TESTS "tests/*.cpp")
|
|
ADD_OSQUERY_TEST(TRUE ${OSQUERY_DATABASE_TESTS})
|