diff options
author | Mihai Fufezan <[email protected]> | 2024-08-30 00:16:17 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2024-08-30 00:16:17 +0300 |
commit | 420b57757f3e13ac9ee726290d745958b1a5c281 (patch) | |
tree | c9df9762d0c5e4cb684881eadcd330dc74c7aa60 | |
parent | 6136a98f4327f40a1654c877ac4e73a2f2952336 (diff) | |
download | Hyprland-better-lockscreen-dead.tar.gz Hyprland-better-lockscreen-dead.zip |
CMake: don't install meson filesbetter-lockscreen-dead
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b971628..84a856b8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -341,7 +341,9 @@ add_compile_definitions(DATAROOTDIR="${CMAKE_INSTALL_FULL_DATAROOTDIR}") # installable assets file(GLOB_RECURSE INSTALLABLE_ASSETS "assets/install/*") -install(FILES ${INSTALLABLE_ASSETS} DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/hypr) +list(FILTER INSTALLABLE_ASSETS EXCLUDE REGEX "meson.build") +install(FILES ${INSTALLABLE_ASSETS} + DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/hypr) # default config install(FILES ${CMAKE_SOURCE_DIR}/example/hyprland.conf |