# # Copyright (C) 2020 The Falco Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the # specific language governing permissions and limitations under the License. # set(SYSDIG_CMAKE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/sysdig-repo") set(SYSDIG_CMAKE_WORKING_DIR "${CMAKE_BINARY_DIR}/sysdig-repo") # this needs to be here at the top if(USE_BUNDLED_DEPS) # explicitly force this dependency to use the bundled OpenSSL set(USE_BUNDLED_OPENSSL ON) set(USE_BUNDLED_JQ ON) endif() file(MAKE_DIRECTORY ${SYSDIG_CMAKE_WORKING_DIR}) # The sysdig git reference (branch name, commit hash, or tag) To update sysdig version for the next release, change the # default below In case you want to test against another sysdig version just pass the variable - ie., `cmake # -DSYSDIG_VERSION=dev ..` if(NOT SYSDIG_VERSION) set(SYSDIG_VERSION "build/stripped") # todo(leogr): set the correct version and checksum before merging set(SYSDIG_CHECKSUM "SHA256=653a2e665b3a0ac2cafac07debaa779dc65113f9308f4e4e4ff3d5c9582836d3") endif() set(PROBE_VERSION "${SYSDIG_VERSION}") # cd /path/to/build && cmake /path/to/source execute_process(COMMAND "${CMAKE_COMMAND}" -DSYSDIG_VERSION=${SYSDIG_VERSION} -DSYSDIG_CHECKSUM=${SYSDIG_CHECKSUM} ${SYSDIG_CMAKE_SOURCE_DIR} WORKING_DIRECTORY ${SYSDIG_CMAKE_WORKING_DIR}) # todo(leodido, fntlnz) > use the following one when CMake version will be >= 3.13 # execute_process(COMMAND "${CMAKE_COMMAND}" -B ${SYSDIG_CMAKE_WORKING_DIR} WORKING_DIRECTORY # "${SYSDIG_CMAKE_SOURCE_DIR}") execute_process(COMMAND "${CMAKE_COMMAND}" --build . WORKING_DIRECTORY "${SYSDIG_CMAKE_WORKING_DIR}") set(SYSDIG_SOURCE_DIR "${SYSDIG_CMAKE_WORKING_DIR}/sysdig-prefix/src/sysdig") # jsoncpp set(JSONCPP_SRC "${SYSDIG_SOURCE_DIR}/userspace/libsinsp/third-party/jsoncpp") set(JSONCPP_INCLUDE "${JSONCPP_SRC}") set(JSONCPP_LIB_SRC "${JSONCPP_SRC}/jsoncpp.cpp") # Add driver directory add_subdirectory("${SYSDIG_SOURCE_DIR}/driver" "${PROJECT_BINARY_DIR}/driver") # Add libscap directory add_definitions(-D_GNU_SOURCE) add_definitions(-DHAS_CAPTURE) add_subdirectory("${SYSDIG_SOURCE_DIR}/userspace/libscap" "${PROJECT_BINARY_DIR}/userspace/libscap") # Add libsinsp directory add_subdirectory("${SYSDIG_SOURCE_DIR}/userspace/libsinsp" "${PROJECT_BINARY_DIR}/userspace/libsinsp") add_dependencies(sinsp tbb b64 luajit) # explicitly disable the tests of this dependency set(CREATE_TEST_TARGETS OFF) if(USE_BUNDLED_DEPS) add_dependencies(scap jq) if(NOT MINIMAL_BUILD) add_dependencies(scap curl grpc) endif() endif()