aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/juce/install-extras.diff
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/juce/install-extras.diff
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/juce/install-extras.diff')
-rw-r--r--vcpkg/ports/juce/install-extras.diff19
1 files changed, 19 insertions, 0 deletions
diff --git a/vcpkg/ports/juce/install-extras.diff b/vcpkg/ports/juce/install-extras.diff
new file mode 100644
index 0000000..ae80aef
--- /dev/null
+++ b/vcpkg/ports/juce/install-extras.diff
@@ -0,0 +1,19 @@
+diff --git a/extras/CMakeLists.txt b/extras/CMakeLists.txt
+index 7f5555e..539f1cb 100644
+--- a/extras/CMakeLists.txt
++++ b/extras/CMakeLists.txt
+@@ -35,5 +35,14 @@ add_subdirectory(AudioPerformanceTest)
+ add_subdirectory(AudioPluginHost)
+ add_subdirectory(BinaryBuilder)
+ add_subdirectory(NetworkGraphicsDemo)
++if(NOT ANDROID AND NOT IOS)
+ add_subdirectory(Projucer)
++endif()
+ add_subdirectory(UnitTestRunner)
++
++file(GLOB tools RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/*")
++foreach(tool IN LISTS tools)
++ if(TARGET "${tool}")
++ install(TARGETS "${tool}" DESTINATION "${JUCE_TOOL_INSTALL_DIR}")
++ endif()
++endforeach()