vcpkg/ports/juce/0004-install-paths.patch
Amin Yahyaabadi 3bc5ff7f7a
[juce] add port for JUCE (#35439)
* [juce] add port for JUCE

* [juce] install linux dependencies in ci

* [juce] fix tool installation and cleaning

* [juce] fix freetype includes for juce graphics

* [juce] fix freetype includes for juceaide

* [juce] simplify the freetype find check

* [juce] use find_path in addition for freetype

* [juce] allow setting freetype usage for juceaide

* [juce] forward freetype setting + guard with option

* [juce] do not use freetype for console apps

* [juce] freetype is needed for console apps on Linux

* [juce] link freetype on Linux for juce_build_tools

* [juce] forward-vcpkg-toolchain for Builder

* [juce] fix linux dependencies + forward vcpkg args

* [juce] fix installation of juce tools and juce extra tools

* [juce] use jack2 only on Linux

* [juce] add docs for targets and descriptions

* [juce] fix installation path references in CMake

* [juce] do not move Cmake files + fix tool install dir

* [juce] remove libwebkit2gtk-4.0-dev from ci

* [juce] add ONLY_STATIC_LIBRARY to the port for windows

* [juce] fix the CMake path installation paths

* Revert "[juce] add ONLY_STATIC_LIBRARY to the port for windows"

This reverts commit 0eb5c6f1c6.

* [juce] improve linux dependencies find/linkage

* [juce] remove libxcomposite-dev from vm
2024-01-08 14:36:00 -08:00

50 lines
2.1 KiB
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4262a9852..a46b51f1a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -167,14 +167,14 @@ if(("${CMAKE_SOURCE_DIR}" STREQUAL "${JUCE_SOURCE_DIR}") AND (NOT JUCE_BUILD_HEL
_juce_add_lv2_manifest_helper_target()
if(TARGET juce_lv2_helper)
- install(TARGETS juce_lv2_helper EXPORT LV2_HELPER DESTINATION "bin/JUCE-${JUCE_VERSION}")
+ install(TARGETS juce_lv2_helper EXPORT LV2_HELPER DESTINATION "${JUCE_TOOL_INSTALL_DIR}")
install(EXPORT LV2_HELPER NAMESPACE juce:: DESTINATION "${JUCE_INSTALL_DESTINATION}")
endif()
_juce_add_vst3_manifest_helper_target()
if(TARGET juce_vst3_helper)
- install(TARGETS juce_vst3_helper EXPORT VST3_HELPER DESTINATION "bin/JUCE-${JUCE_VERSION}")
+ install(TARGETS juce_vst3_helper EXPORT VST3_HELPER DESTINATION "${JUCE_TOOL_INSTALL_DIR}")
install(EXPORT VST3_HELPER NAMESPACE juce:: DESTINATION "${JUCE_INSTALL_DESTINATION}")
endif()
endif()
diff --git a/extras/Build/juceaide/CMakeLists.txt b/extras/Build/juceaide/CMakeLists.txt
index f4cdba7f7..fab57fdb4 100644
--- a/extras/Build/juceaide/CMakeLists.txt
+++ b/extras/Build/juceaide/CMakeLists.txt
@@ -164,7 +164,7 @@ else()
add_executable(juce::juceaide ALIAS juceaide)
- set(JUCE_TOOL_INSTALL_DIR "bin/JUCE-${JUCE_VERSION}" CACHE STRING
+ set(JUCE_TOOL_INSTALL_DIR "tools/juce" CACHE STRING
"The location, relative to the install prefix, where juceaide will be installed")
install(PROGRAMS "${imported_location}" DESTINATION "${JUCE_TOOL_INSTALL_DIR}")
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a46b51f1a..38f863a3e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -123,7 +123,7 @@ write_basic_package_version_file("${JUCE_BINARY_DIR}/JUCEConfigVersion.cmake"
COMPATIBILITY ExactVersion
${extra_version_arg})
-set(JUCE_INSTALL_DESTINATION "lib/cmake/JUCE-${JUCE_VERSION}" CACHE STRING
+set(JUCE_INSTALL_DESTINATION "share/juce" CACHE STRING
"The location, relative to the install prefix, where the JUCE config file will be installed")
set(JUCE_MODULE_PATH "include/JUCE-${JUCE_VERSION}/modules")
--
2.34.1