Fix installation of presets/ directory

This commit is contained in:
Viorel
2022-08-12 21:39:27 +03:00
parent 9fa00081e3
commit d75f72c8fe
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}"
)