diff options
author | Louie S <louie@example.com> | 2024-04-01 19:54:34 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-04-01 19:54:34 -0400 |
commit | 50d93e4a110533be2c45efbd853e2257d9962978 (patch) | |
tree | f6a7de69bfc553afcd46220681275ca6363eef84 | |
parent | 40a863158b87671a7a52aeabd0851b6180450469 (diff) |
Fix unset macro for desktop entry
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0d32a0a..f3defaa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -125,6 +125,7 @@ install(TARGETS assignment-list) # install desktop entry and icon if(CMAKE_SYSTEM MATCHES "Linux.*") + include(GNUInstallDirs) configure_file(data/assignment-list.desktop.in ${CMAKE_CURRENT_SOURCE_DIR}/data/assignment-list.desktop @ONLY) install(FILES data/assignment-list.desktop DESTINATION share/applications) install(FILES data/assignment-list.svg DESTINATION share/pixmaps) |