Compare commits

..

2 Commits

Author SHA1 Message Date
Linus Dierheimer 8404ae8e70 Merge pull request #212 from ceamac/bugs/install-presets
Fix installation of presets/ directory
2022-08-12 21:50:49 +02:00
Viorel d75f72c8fe Fix installation of presets/ directory 2022-08-12 22:35:31 +03:00
2 changed files with 6 additions and 2 deletions
+4
View File
@@ -1,3 +1,7 @@
# 1.6.3
Fixes installing presets in their own directory (#212)
# 1.6.2
Releasing this, so void linux can package fastfetch.
+2 -2
View File
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs
project(fastfetch
VERSION 1.6.2
VERSION 1.6.3
LANGUAGES C
)
@@ -522,7 +522,7 @@ install(
)
install(
DIRECTORY "${CMAKE_SOURCE_DIR}/presets/"
DIRECTORY "${CMAKE_SOURCE_DIR}/presets"
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/${CMAKE_PROJECT_NAME}"
)