From e61a429f240b012053f5f7dd938e8ae974f598a3 Mon Sep 17 00:00:00 2001 From: DcruBro Date: Sun, 18 Jan 2026 19:54:49 +0100 Subject: [PATCH] Fix lowercase whitelisted_keys not being recognized as entries --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c5a374e..267a960 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -169,5 +169,7 @@ install(TARGETS server RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) -install(FILES LICENSE - DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/licenses/${PROJECT_NAME}) \ No newline at end of file +install(FILES + LICENSES/GPL-2.0-only.txt + LICENSES/GPL-3.0.txt + DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/licenses/${PROJECT_NAME})