From ce56c3ed097db5ee02feb2b2c1d70d4454374ee8 Mon Sep 17 00:00:00 2001 From: Kai Blaschke Date: Fri, 6 Oct 2023 12:41:43 +0200 Subject: [PATCH] Fix filenames of static libraries. These were missing the "-4" suffix, and the static playlist library also used underscores instead of dashes. --- src/libprojectM/CMakeLists.txt | 2 +- src/playlist/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libprojectM/CMakeLists.txt b/src/libprojectM/CMakeLists.txt index 077be738f..044bfa690 100644 --- a/src/libprojectM/CMakeLists.txt +++ b/src/libprojectM/CMakeLists.txt @@ -135,7 +135,7 @@ else() ) set_target_properties(projectM PROPERTIES - OUTPUT_NAME $,libprojectM,projectM> + OUTPUT_NAME $,libprojectM-4,projectM-4> FOLDER libprojectM ) endif() diff --git a/src/playlist/CMakeLists.txt b/src/playlist/CMakeLists.txt index 512efb48e..b05a21446 100644 --- a/src/playlist/CMakeLists.txt +++ b/src/playlist/CMakeLists.txt @@ -75,7 +75,7 @@ else() ) set_target_properties(projectM_playlist PROPERTIES - OUTPUT_NAME $,libprojectM_playlist,projectM_playlist> + OUTPUT_NAME $,libprojectM-4-playlist,projectM-4-playlist> FOLDER libprojectM ) endif()