From 29881ce0a8880979a380f565d1c05a07af04d4cd Mon Sep 17 00:00:00 2001 From: casey langen Date: Sat, 17 Dec 2022 14:33:07 -0800 Subject: [PATCH] A few minor cleanups found while experimenting with Alpine linux. --- script/patch-rpath.sh | 0 src/musikcore/pch.cmake | 4 ---- src/musikcube/pch.cmake | 4 ---- src/plugins/httpdatastream/CMakeLists.txt | 1 + 4 files changed, 1 insertion(+), 8 deletions(-) mode change 100644 => 100755 script/patch-rpath.sh diff --git a/script/patch-rpath.sh b/script/patch-rpath.sh old mode 100644 new mode 100755 diff --git a/src/musikcore/pch.cmake b/src/musikcore/pch.cmake index 3fe5674d4..cfff56886 100644 --- a/src/musikcore/pch.cmake +++ b/src/musikcore/pch.cmake @@ -1,6 +1,5 @@ target_precompile_headers(musikcore PRIVATE - "$<$:>" "$<$:>" "$<$:>" "$<$:>" @@ -10,9 +9,6 @@ target_precompile_headers(musikcore "$<$:>" "$<$:>" "$<$:>" - "$<$:>" - "$<$:>" - "$<$:>" "$<$:>" "$<$:>" diff --git a/src/musikcube/pch.cmake b/src/musikcube/pch.cmake index f42502533..02bd5b05b 100644 --- a/src/musikcube/pch.cmake +++ b/src/musikcube/pch.cmake @@ -1,6 +1,5 @@ target_precompile_headers(musikcube PRIVATE - "$<$:>" "$<$:>" "$<$:>" "$<$:>" @@ -10,9 +9,6 @@ target_precompile_headers(musikcube "$<$:>" "$<$:>" "$<$:>" - "$<$:>" - "$<$:>" - "$<$:>" PUBLIC "$<$:cursespp/cursespp/App.h>" diff --git a/src/plugins/httpdatastream/CMakeLists.txt b/src/plugins/httpdatastream/CMakeLists.txt index d2490b551..066cd5faf 100644 --- a/src/plugins/httpdatastream/CMakeLists.txt +++ b/src/plugins/httpdatastream/CMakeLists.txt @@ -6,5 +6,6 @@ set (httpdatastream_SOURCES add_library(httpdatastream SHARED ${httpdatastream_SOURCES}) +add_vendor_includes(httpdatastream) target_include_directories(httpdatastream BEFORE PUBLIC) target_link_libraries(httpdatastream ${LIBCURL})