mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-16 10:06:24 +02:00
32 lines
771 B
Diff
32 lines
771 B
Diff
--- /dev/null
|
|
+++ b/JUCEConfig.cmake
|
|
@@ -0,0 +1,28 @@
|
|
+set(JUCE_FOUND TRUE)
|
|
+set(JUCE_VERSION 7.0.8)
|
|
+set(JUCE_INCLUDE_DIRS /usr/include/JUCE-7.0.8/modules)
|
|
+set(JUCE_MODULES_PATH /usr/include/JUCE-7.0.8/modules)
|
|
+set(JUCE_LIBRARIES
|
|
+ juce_audio_plugin_client
|
|
+ juce_audio_utils
|
|
+ juce_audio_processors
|
|
+ juce_audio_formats
|
|
+ juce_audio_devices
|
|
+ juce_audio_basics
|
|
+ juce_dsp
|
|
+ juce_gui_extra
|
|
+ juce_gui_basics
|
|
+ juce_graphics
|
|
+ juce_opengl
|
|
+ juce_video
|
|
+ juce_osc
|
|
+ juce_cryptography
|
|
+ juce_analytics
|
|
+ juce_box2d
|
|
+ juce_product_unlocking
|
|
+ juce_data_structures
|
|
+ juce_events
|
|
+ juce_core
|
|
+)
|
|
+add_compile_definitions(JUCE_GLOBAL_MODULE_SETTINGS_INCLUDED=1)
|
|
+add_compile_definitions(BACKWARD_HAS_DW=1)
|
|
+
|