mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
29 lines
1.0 KiB
CMake
29 lines
1.0 KiB
CMake
# Copyright (c) 2014-present, Facebook, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the BSD-style license found in the
|
|
# LICENSE file in the root directory of this source tree. An additional grant
|
|
# of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
# Target for generating osquery thirft (extensions) code.
|
|
set(OSQUERY_THRIFT_DIR "${CMAKE_BINARY_DIR}/generated/gen-cpp")
|
|
set(OSQUERY_THRIFT_GENERATED_FILES
|
|
${OSQUERY_THRIFT_DIR}/Extension.cpp
|
|
${OSQUERY_THRIFT_DIR}/Extension.h
|
|
${OSQUERY_THRIFT_DIR}/ExtensionManager.cpp
|
|
${OSQUERY_THRIFT_DIR}/ExtensionManager.h
|
|
${OSQUERY_THRIFT_DIR}/osquery_types.cpp
|
|
${OSQUERY_THRIFT_DIR}/osquery_types.h
|
|
)
|
|
|
|
# Allow targets to warn if the thrift interface code is not defined.
|
|
add_definitions(
|
|
-DOSQUERY_THRIFT_LIB=thrift
|
|
-DOSQUERY_THRIFT_SERVER_LIB=thrift/server
|
|
-DOSQUERY_THRIFT_POINTER=boost
|
|
-DOSQUERY_THRIFT=
|
|
)
|
|
|
|
# For the extensions targets, allow them to include thrift interface headers.
|
|
include_directories("${OSQUERY_THRIFT_DIR}")
|