From 3eaf61847026006718107eb81d544783f1685af8 Mon Sep 17 00:00:00 2001 From: "Guillaume G." <24816508+gzzi@users.noreply.github.com> Date: Fri, 6 Sep 2024 07:00:10 +0200 Subject: [PATCH] Fix install path issue --- cli/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/CMakeLists.txt b/cli/CMakeLists.txt index 3859d35a13c..51e9aee6718 100644 --- a/cli/CMakeLists.txt +++ b/cli/CMakeLists.txt @@ -75,15 +75,15 @@ if (BUILD_CLI) COMPONENT applications) install(FILES ${addons} - DESTINATION ${FILESDIR}/addons + DESTINATION ${FILESDIR_DEF}/addons COMPONENT headers) install(FILES ${cfgs} - DESTINATION ${FILESDIR}/cfg + DESTINATION ${FILESDIR_DEF}/cfg COMPONENT headers) install(FILES ${platforms} - DESTINATION ${FILESDIR}/platforms + DESTINATION ${FILESDIR_DEF}/platforms COMPONENT headers) -endif() \ No newline at end of file +endif()