2020-05-27 23:03:36 +02:00
|
|
|
# -*- mode: cmake; -*-
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(nix CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
|
2020-05-29 23:31:07 +02:00
|
|
|
# Export compile_commands.json which can be used by tools such as
|
|
|
|
# clangd and clang-tidy.
|
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
|
2020-07-23 20:55:47 +02:00
|
|
|
# Enable warnings
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror")
|
|
|
|
|
2020-06-21 18:20:59 +02:00
|
|
|
# Provide an output path for pkgconfig.
|
|
|
|
include(GNUInstallDirs)
|
2020-06-21 18:23:08 +02:00
|
|
|
set(PKGCONFIG_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
|
2020-06-21 18:20:59 +02:00
|
|
|
|
2020-05-27 23:03:36 +02:00
|
|
|
# The following lines import CMake-native dependencies which may
|
|
|
|
# contain useful definitions. Other dependencies are not treated
|
|
|
|
# specially by CMake and are only linked into the resulting binary.
|
|
|
|
find_package(BZip2)
|
2020-07-05 21:02:10 +02:00
|
|
|
find_package(Boost COMPONENTS context)
|
2020-05-27 23:03:36 +02:00
|
|
|
find_package(CURL)
|
2020-07-05 18:46:01 +02:00
|
|
|
find_package(LibLZMA)
|
2020-07-05 21:02:10 +02:00
|
|
|
find_package(Protobuf REQUIRED)
|
2020-05-27 23:03:36 +02:00
|
|
|
find_package(SQLite3)
|
|
|
|
find_package(Threads)
|
2020-07-05 18:37:36 +02:00
|
|
|
find_package(absl REQUIRED)
|
2020-07-05 21:02:10 +02:00
|
|
|
find_package(gRPC REQUIRED)
|
2020-07-05 18:46:01 +02:00
|
|
|
find_package(glog REQUIRED)
|
2020-05-29 22:51:29 +02:00
|
|
|
|
2020-07-23 20:55:47 +02:00
|
|
|
find_program(CLANG_TIDY_PATH clang-tidy)
|
|
|
|
if (CLANG_TIDY_PATH)
|
2020-07-25 04:35:12 +02:00
|
|
|
# TODO(kanepyork): figure out how to reenable
|
|
|
|
#message("Found clang-tidy: ${CLANG_TIDY_PATH}")
|
|
|
|
#set(CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_PATH};--line-filter=[{\"name\":\"src/cpptoml/cpptoml.h\"},{\"name\":\"google/protobuf/metadata_lite.h\"}]")
|
2020-07-23 20:55:47 +02:00
|
|
|
|
|
|
|
# nix's toolchain has a problem with system header includes, so clang-tidy requires a manual -isystem
|
|
|
|
if (DEFINED ENV{LIBCXX_INCLUDE})
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -isystem $ENV{LIBCXX_INCLUDE}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2020-08-04 23:02:51 +02:00
|
|
|
if (DEFINED ENV{SANDBOX_SHELL})
|
2020-08-14 04:15:04 +02:00
|
|
|
message("Using SANDBOX_SHELL = $ENV{SANDBOX_SHELL}")
|
|
|
|
set(SANDBOX_SHELL "$ENV{SANDBOX_SHELL}")
|
2020-08-04 23:02:51 +02:00
|
|
|
else()
|
2020-08-04 02:20:30 +02:00
|
|
|
find_program(BUSYBOX busybox)
|
|
|
|
if (BUSYBOX)
|
|
|
|
set(SANDBOX_SHELL "${BUSYBOX}")
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Could not find busybox and SANDBOX_SHELL is not set")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2020-05-27 23:03:36 +02:00
|
|
|
# generate a configuration file (autoheader-style) to configure
|
|
|
|
# certain symbols that Nix depends on.
|
|
|
|
configure_file(config.h.in nix_config.h @ONLY)
|
2020-06-21 22:40:55 +02:00
|
|
|
INSTALL(FILES "${PROJECT_BINARY_DIR}/nix_config.h" DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/nix")
|
|
|
|
|
|
|
|
# install corepkgs
|
|
|
|
configure_file(corepkgs/config.nix.in config.nix @ONLY)
|
|
|
|
INSTALL(DIRECTORY corepkgs
|
|
|
|
DESTINATION ${CMAKE_INSTALL_DATADIR}/nix
|
|
|
|
FILES_MATCHING
|
|
|
|
PATTERN "*.nix")
|
|
|
|
INSTALL(FILES "${PROJECT_BINARY_DIR}/config.nix" DESTINATION "${CMAKE_INSTALL_DATADIR}/nix/corepkgs")
|
2020-05-27 23:03:36 +02:00
|
|
|
|
2020-07-17 03:19:21 +02:00
|
|
|
# Conditionally run tests
|
|
|
|
option(PACKAGE_TESTS "Build the tests" ON)
|
|
|
|
if (PACKAGE_TESTS)
|
|
|
|
enable_testing()
|
|
|
|
find_package(GTest)
|
2020-07-19 06:36:22 +02:00
|
|
|
find_package(rapidcheck)
|
2020-07-17 03:19:21 +02:00
|
|
|
include(GoogleTest)
|
|
|
|
endif()
|
|
|
|
|
2020-05-27 23:03:36 +02:00
|
|
|
add_subdirectory(src)
|