mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
33 lines
854 B
CMake
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()
|