osquery-1/osquery/tables/utility/CMakeLists.txt
2020-04-20 17:49:57 +02:00

33 lines
854 B
CMake

# Copyright (c) 2014-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed in accordance with the terms specified in
# the LICENSE file found in the root directory of this source tree.
function(osqueryTablesUtilityMain)
generateTablesUtilityUtilitytable()
endfunction()
function(generateTablesUtilityUtilitytable)
add_osquery_library(osquery_tables_utility_utilitytable EXCLUDE_FROM_ALL
file.cpp
osquery.cpp
time.cpp
)
target_link_libraries(osquery_tables_utility_utilitytable PUBLIC
osquery_cxx_settings
osquery_config
osquery_core
osquery_filesystem
osquery_process
osquery_utils_macros
osquery_utils_system_systemutils
osquery_worker_ipc_platformtablecontaineripc
osquery_worker_logging_glog_logger
thirdparty_boost
)
endfunction()
osqueryTablesUtilityMain()