This didn't work previously ... but now it does. I think setting the standard explicitly is what did the trick, but it's slightly unclear to me why. Either way this means that Abseil is no longer constantly getting recompiled when building Nix, which is nice. Change-Id: I377f7b68bf1ef9045df6a2eee8fdd0c92f243547 Reviewed-on: https://cl.tvl.fyi/c/depot/+/921 Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi>
44 lines
1.6 KiB
CMake
44 lines
1.6 KiB
CMake
# -*- mode: cmake; -*-
|
|
cmake_minimum_required(VERSION 3.16)
|
|
project(nix CXX)
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
# Export compile_commands.json which can be used by tools such as
|
|
# clangd and clang-tidy.
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
# Provide an output path for pkgconfig.
|
|
include(GNUInstallDirs)
|
|
set(PKGCONFIG_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
|
|
|
|
# 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)
|
|
find_package(Boost COMPONENTS context) # probably coroutine + ::headers, lets find out
|
|
find_package(CURL)
|
|
find_package(SQLite3)
|
|
find_package(Threads)
|
|
find_package(LibLZMA)
|
|
find_package(absl REQUIRED)
|
|
|
|
# Linking precompiled glog binaries (linked against libstdc++) leads
|
|
# to working binaries that do not output log messages. It seems that
|
|
# in order to use glog with LLVM & libc++, one needs to make glog a
|
|
# part of the local project build.
|
|
add_subdirectory(glog)
|
|
|
|
# generate a configuration file (autoheader-style) to configure
|
|
# certain symbols that Nix depends on.
|
|
configure_file(config.h.in nix_config.h @ONLY)
|
|
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")
|
|
|
|
add_subdirectory(src)
|