From 4933d9c19fabe682795f2829c7732ff41f55a714 Mon Sep 17 00:00:00 2001 From: Lephenixnoir Date: Sun, 16 May 2021 18:01:21 +0200 Subject: [PATCH] cmake: remove unneeded separators in install paths --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 42ad3d7..44541eb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -134,10 +134,10 @@ set_target_properties(fxlibc PROPERTIES # Install install(TARGETS fxlibc DESTINATION lib/) -install(DIRECTORY include/ DESTINATION include/ PATTERN "target" EXCLUDE) +install(DIRECTORY include/ DESTINATION include PATTERN "target" EXCLUDE) foreach(FOLDER IN LISTS TARGET_FOLDERS) if(EXISTS include/target/${FOLDER}/) - install(DIRECTORY include/target/${FOLDER}/ DESTINATION include/) + install(DIRECTORY include/target/${FOLDER}/ DESTINATION include) endif() endforeach()