From 78eeb963a3fcf32822822100560807f72dfe68c2 Mon Sep 17 00:00:00 2001 From: artoo Date: Tue, 2 Jan 2024 22:57:08 +0100 Subject: [PATCH] libcalamares: add compat and packages headers to be installed; Use case would be customization of default modules, eg packagechooser requires compat/Variant.h and packages/Globals.h to compile in the calamares-extension repo Signed-off-by: artoo --- src/libcalamares/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcalamares/CMakeLists.txt b/src/libcalamares/CMakeLists.txt index ce821b967e..ce05969a88 100644 --- a/src/libcalamares/CMakeLists.txt +++ b/src/libcalamares/CMakeLists.txt @@ -190,7 +190,7 @@ install( DESTINATION include/libcalamares ) # Install each subdir-worth of header files -foreach(subdir geoip locale modulesystem network partition utils) +foreach(subdir geoip locale modulesystem network partition utils compat packages) file(GLOB subdir_headers "${subdir}/*.h") install(FILES ${subdir_headers} DESTINATION include/libcalamares/${subdir}) endforeach()