From a54f155c0715b42cdee0485200658075fb6cf173 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 21 Jun 2020 16:58:01 +0100 Subject: chore(3p/nix): export library headers to include/ in output. Change-Id: I87eb6e59782d720015d351d8829dc7b8688e01f2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/543 Reviewed-by: tazjin --- third_party/nix/src/libutil/CMakeLists.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'third_party/nix/src/libutil') diff --git a/third_party/nix/src/libutil/CMakeLists.txt b/third_party/nix/src/libutil/CMakeLists.txt index 2aa513a39549..395671e07c8c 100644 --- a/third_party/nix/src/libutil/CMakeLists.txt +++ b/third_party/nix/src/libutil/CMakeLists.txt @@ -4,8 +4,7 @@ set_property(TARGET nixutil PROPERTY CXX_STANDARD 17) include_directories(${PROJECT_BINARY_DIR}) # for config.h target_compile_features(nixutil PUBLIC cxx_std_17) -target_sources(nixutil - PUBLIC +set(HEADER_FILES affinity.hh archive.hh args.hh @@ -27,6 +26,11 @@ target_sources(nixutil types.hh util.hh xml-writer.hh +) + +target_sources(nixutil + PUBLIC + ${HEADER_FILES} PRIVATE affinity.cc @@ -50,4 +54,5 @@ target_link_libraries(nixutil # Install header files to include/libutil and mark them for automatic # inclusion in targets that link to this one. target_include_directories(nixutil PUBLIC "${nix_SOURCE_DIR}/src") +INSTALL(FILES ${HEADER_FILES} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/nix/libutil) INSTALL(TARGETS nixutil DESTINATION lib) -- cgit 1.4.1