forked from sonosaurus/sonobus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
570 lines (468 loc) · 18.4 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
# To get started on a new plugin, copy this entire folder (containing this file and C++ sources) to
# a convenient location, and then start making modifications.
# The first line of any CMake project should be a call to `cmake_minimum_required`, which checks
# that the installed CMake will be able to understand the following CMakeLists, and ensures that
# CMake's behaviour is compatible with the named version. This is a standard CMake command, so more
# information can be found in the CMake docs.
cmake_minimum_required(VERSION 3.15)
if (WIN32)
#set (CMAKE_GENERATOR_TOOLSET ClangCL)
#static linking in Windows
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
endif()
# If we are compiling for Mac OS we want to target OS versions down to 10.9
option(UniversalBinary "Build universal binary for mac" ON)
if (APPLE)
set (CMAKE_OSX_DEPLOYMENT_TARGET "10.10" CACHE INTERNAL "")
if (UniversalBinary)
set(CMAKE_OSX_ARCHITECTURES "x86_64;arm64" CACHE INTERNAL "")
#set(CMAKE_OSX_ARCHITECTURES arm64 x86_64)
endif()
endif()
# The top-level CMakeLists.txt file for a project must contain a literal, direct call to the
# `project()` command. `project()` sets up some helpful variables that describe source/binary
# directories, and the current project version. This is a standard CMake command.
project(SonoBus VERSION 1.4.9)
set(BUILDVERSION 72)
# If you've installed JUCE somehow (via a package manager, or directly using the CMake install
# target), you'll need to tell this project that it depends on the installed copy of JUCE. If you've
# included JUCE directly in your source tree (perhaps as a submodule), you'll need to tell CMake to
# include that subdirectory as part of the build.
# find_package(JUCE CONFIG REQUIRED) # If you've installed JUCE to your system
# or
# By default we don't want Xcode schemes to be made for modules, etc
set(CMAKE_XCODE_GENERATE_SCHEME OFF)
# No ZERO_CHECK target (it helps bust cache for cmake)
set(CMAKE_SUPPRESS_REGENERATION true)
# prevent install all
#set(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY true)
# Adds all the module sources so they appear correctly in the IDE
# Must be set before JUCE is added as a sub-dir (or any targets are made)
# https://github.com/juce-framework/JUCE/commit/6b1b4cf7f6b1008db44411f2c8887d71a3348889
set_property(GLOBAL PROPERTY USE_FOLDERS YES)
# This is a failed attempt to bury ALL_BUILD in Targets/
# This should be called before any target is made
# Bug in Xcode? https://gitlab.kitware.com/cmake/cmake/-/issues/21383
set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "Targets")
# Create a /Modules directory in the IDE with the JUCE Module code
option(JUCE_ENABLE_MODULE_SOURCE_GROUPS "Show all module sources in IDE projects" ON)
# include JUCE
add_subdirectory(deps/juce EXCLUDE_FROM_ALL )
juce_add_modules(deps/ff_meters)
set (FormatsToBuild VST3 Standalone)
# On Mac, a AU version will be built too
if (APPLE)
list (APPEND FormatsToBuild AU)
endif()
# If you are building a VST2 or AAX plugin, CMake needs to be told where to find these SDKs on your
# system. This setup should be done before calling `juce_add_plugin`.
#juce_set_vst2_sdk_path("../VST2_SDK")
#juce_set_aax_sdk_path("../AAX_SDK_2p3p2")
if (AAX_SDK_PATH)
juce_set_aax_sdk_path (${AAX_SDK_PATH})
if (APPLE OR (NOT ("${CMAKE_VS_PLATFORM_NAME}" STREQUAL "Win32")))
list (APPEND FormatsToBuild AAX)
endif()
endif()
if (VST2_SDK_PATH)
juce_set_vst2_sdk_path (${VST2_SDK_PATH})
list (APPEND FormatsToBuild VST)
endif()
set (MacPList "<plist version=\"1.0\">
<dict>
<key>CFBundleVersion</key>
<string>${BUILDVERSION}</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>net.sonobus</string>
<key>CFBundleURLSchemes</key>
<array>
<string>sonobus</string>
</array>
</dict>
</array>
</dict>
</plist>")
# `juce_add_plugin` adds a static library target with the name passed as the first argument
# (AudioPluginExample here). This target is a normal CMake target, but has a lot of extra properties set
# up by default. As well as this shared code static library, this function adds targets for each of
# the formats specified by the FORMATS arguments. This function accepts many optional arguments.
# Check the readme at `docs/CMake API.md` in the JUCE repo for the full list.
function(sono_add_custom_plugin_target target_name product_name formats is_instrument plugincode)
if (is_instrument)
set (vst3cats Instrument Network)
set (vst2cat "kPlugCategSynth")
else()
set (vst3cats Fx Network)
set (vst2cat "kPlugCategEffect")
endif()
juce_add_plugin("${target_name}"
IS_SYNTH "${is_instrument}"
NEEDS_MIDI_INPUT TRUE
NEEDS_MIDI_OUTPUT TRUE
EDITOR_WANTS_KEYBOARD_FOCUS TRUE
COMPANY_NAME "Sonosaurus"
BUNDLE_ID "com.Sonosaurus.SonoBus"
MICROPHONE_PERMISSION_ENABLED TRUE
ICON_BIG "images/sonobus_icon_mac_1024.png"
ICON_SMALL "images/sonobus_icon_mac_256.png"
NEEDS_WEB_BROWSER FALSE
VST2_CATEGORY "${vst2cat}"
VST3_CATEGORIES "${vst3cats}"
AAX_CATEGORY "AAX_ePlugInCategory_None"
# mac settings
HARDENED_RUNTIME_ENABLED TRUE
HARDENED_RUNTIME_OPTIONS "com.apple.security.device.audio-input"
PLIST_TO_MERGE "${MacPList}"
AU_MAIN_TYPE "kAudioUnitType_MusicEffect"
# other settings...
PLUGIN_MANUFACTURER_CODE Sono
PLUGIN_CODE ${plugincode}
FORMATS ${formats}
DESCRIPTION "SonoBus - Network Audio"
PRODUCT_NAME "${product_name}")
juce_generate_juce_header("${target_name}")
set (HEADER_INCLUDES
deps/aoo/lib
deps/aoo/deps
)
set (LIB_PATHS "")
set (PLAT_COMPILE_DEFS
$<$<CONFIG:Debug>:LOGLEVEL=2>
USE_CODEC_OPUS=1
AOO_TIMEFILTER_CHECK=0
AOO_STATIC)
set(PlatSourceFiles
Source/CrossPlatformUtils.h
)
# platform specific stuff
if (APPLE)
list (APPEND HEADER_INCLUDES deps/mac/include)
list (APPEND LIB_PATHS ${CMAKE_CURRENT_SOURCE_DIR}/deps/mac/lib)
list (APPEND PlatSourceFiles Source/CrossPlatformUtilsMac.mm)
elseif (WIN32)
list (APPEND HEADER_INCLUDES deps/windows ../asiosdk/common)
list (APPEND PlatSourceFiles Source/CrossPlatformUtilsWindows.cpp)
message (STATUS "Win generator platform is: ${CMAKE_VS_PLATFORM_NAME}" )
if ("${CMAKE_VS_PLATFORM_NAME}" STREQUAL "Win32")
list (APPEND LIB_PATHS
$<$<CONFIG:Debug>:${CMAKE_CURRENT_SOURCE_DIR}/deps/windows/Debug32>
$<$<CONFIG:Release>:${CMAKE_CURRENT_SOURCE_DIR}/deps/windows/Release32>
)
else()
list (APPEND LIB_PATHS
$<$<CONFIG:Debug>:${CMAKE_CURRENT_SOURCE_DIR}/deps/windows/Debug>
$<$<CONFIG:Release>:${CMAKE_CURRENT_SOURCE_DIR}/deps/windows/Release>
)
endif()
list (APPEND PLAT_COMPILE_DEFS
_USE_MATH_DEFINES
WINVER=0x0601
_WIN32_WINNT=0x0601)
else()
# Linux
list (APPEND PlatSourceFiles Source/CrossPlatformUtilsLinux.cpp)
list ( APPEND PLAT_COMPILE_DEFS
JUCE_USE_MP3AUDIOFORMAT=1 )
endif()
set(SourceFiles
${PlatSourceFiles}
Source/AutoUpdater.cpp
Source/AutoUpdater.h
Source/BeatToggleGrid.cpp
Source/BeatToggleGrid.h
Source/ChannelGroup.cpp
Source/ChannelGroup.h
Source/ChannelGroupsView.cpp
Source/ChannelGroupsView.h
Source/ChatView.cpp
Source/ChatView.h
Source/CompressorView.h
Source/ConnectView.cpp
Source/ConnectView.h
Source/DebugLogC.h
Source/EffectParams.cpp
Source/EffectParams.h
Source/EffectsBaseView.h
Source/ExpanderView.h
Source/GenericItemChooser.cpp
Source/GenericItemChooser.h
Source/JitterBufferMeter.cpp
Source/JitterBufferMeter.h
Source/LatencyMatchView.cpp
Source/LatencyMatchView.h
Source/LatencyMeasurer.cpp
Source/LatencyMeasurer.h
Source/LevelMeterLookAndFeelMethods.h
Source/LocalLatencyMeasurer.h
Source/MVerb.h
Source/Metronome.cpp
Source/Metronome.h
Source/MonitorDelayView.h
Source/OptionsView.cpp
Source/OptionsView.h
Source/ParametricEqView.h
Source/PeersContainerView.cpp
Source/PeersContainerView.h
Source/PolarityInvertView.h
Source/RandomSentenceGenerator.cpp
Source/RandomSentenceGenerator.h
Source/ReverbSendView.h
Source/ReverbView.h
Source/RunCumulantor.cpp
Source/RunCumulantor.h
Source/RunningCumulant.h
Source/SonoChoiceButton.cpp
Source/SonoChoiceButton.h
Source/SonoDrawableButton.cpp
Source/SonoDrawableButton.h
Source/SonoLookAndFeel.cpp
Source/SonoLookAndFeel.h
Source/SonoStandaloneFilterApp.cpp
Source/SonoStandaloneFilterWindow.h
Source/SonoTextButton.cpp
Source/SonoTextButton.h
Source/SonoUtility.h
Source/SonobusPluginEditor.cpp
Source/SonobusPluginEditor.h
Source/SonobusPluginProcessor.cpp
Source/SonobusPluginProcessor.h
Source/SonobusTypes.h
Source/VersionInfo.cpp
Source/VersionInfo.h
Source/WaveformTransportComponent.h
Source/faustCompressor.h
Source/faustExpander.h
Source/faustLimiter.h
Source/faustParametricEQ.h
Source/mtdm.h
Source/zitaRev.h
)
set(AOOSourceFiles
deps/aoo/lib/src/SLIP.hpp
deps/aoo/lib/src/client.cpp
deps/aoo/lib/src/client.hpp
deps/aoo/lib/src/codec_opus.cpp
deps/aoo/lib/src/codec_pcm.cpp
deps/aoo/lib/src/common.cpp
deps/aoo/lib/src/common.hpp
deps/aoo/lib/src/lockfree.hpp
deps/aoo/lib/src/net_utils.cpp
deps/aoo/lib/src/net_utils.hpp
deps/aoo/lib/src/server.cpp
deps/aoo/lib/src/server.hpp
deps/aoo/lib/src/sink.cpp
deps/aoo/lib/src/sink.hpp
deps/aoo/lib/src/source.cpp
deps/aoo/lib/src/source.hpp
deps/aoo/lib/src/sync.cpp
deps/aoo/lib/src/sync.hpp
deps/aoo/lib/src/time.cpp
deps/aoo/lib/src/time.hpp
deps/aoo/lib/src/time_dll.hpp
deps/aoo/lib/aoo/aoo.h
deps/aoo/lib/aoo/aoo.hpp
deps/aoo/lib/aoo/aoo_net.h
deps/aoo/lib/aoo/aoo_net.hpp
deps/aoo/lib/aoo/aoo_opus.h
deps/aoo/lib/aoo/aoo_pcm.h
deps/aoo/lib/aoo/aoo_types.h
deps/aoo/lib/aoo/aoo_utils.hpp
deps/aoo/deps/md5/md5.c
deps/aoo/deps/md5/md5.h
deps/aoo/deps/oscpack/osc/OscOutboundPacketStream.cpp
deps/aoo/deps/oscpack/osc/OscPrintReceivedElements.cpp
deps/aoo/deps/oscpack/osc/OscReceivedElements.cpp
deps/aoo/deps/oscpack/osc/OscTypes.cpp
deps/aoo/deps/oscpack/osc/MessageMappingOscPacketListener.h
deps/aoo/deps/oscpack/osc/OscException.h
deps/aoo/deps/oscpack/osc/OscHostEndianness.h
deps/aoo/deps/oscpack/osc/OscOutboundPacketStream.h
deps/aoo/deps/oscpack/osc/OscPacketListener.h
deps/aoo/deps/oscpack/osc/OscPrintReceivedElements.h
deps/aoo/deps/oscpack/osc/OscReceivedElements.h
deps/aoo/deps/oscpack/osc/OscTypes.h
)
target_sources("${target_name}" PRIVATE
${SourceFiles}
${AOOSourceFiles}
)
# No, we don't want our source buried in extra nested folders
set_target_properties("${target_name}" PROPERTIES FOLDER "")
# The source tree should uhhh, still look like the source tree, yo
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/Source PREFIX "" FILES ${SourceFiles})
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/deps/aoo PREFIX "aoo" FILES ${AOOSourceFiles})
# Move the INTERFACE auto-created JUCE library stuff into its own folder
source_group("JUCE Library Code" REGULAR_EXPRESSION "juce_")
#target_include_directories("${target_name}"
# INTERFACE
# $<TARGET_PROPERTY:"${target_name}",INCLUDE_DIRECTORIES>)
target_include_directories("${target_name}"
PUBLIC
${HEADER_INCLUDES}
)
# Require at least C++17 to build `my_target`
target_compile_features("${target_name}" PRIVATE cxx_std_17)
# This cleans up the folder organization, especially on Xcode.
# It tucks the Plugin varieties into a "Targets" folder and generate an Xcode Scheme manually
# Xcode scheme generation is turned off globally to limit noise from other targets
# The non-hacky way of doing this is via the global PREDEFINED_TARGETS_FOLDER propety
# However that doesn't seem to be working in Xcode
# Not all plugin types (au, vst) available on each build type (win, macos, linux)
foreach(target ${formats} "All")
if(TARGET ${target_name}_${target})
set_target_properties(${target_name}_${target} PROPERTIES
# Tuck the actual plugin targets into a folder where they won't bother us
FOLDER "Targets"
# MacOS only: Sets the default executable that Xcode will open on build
# For this exact path to to work, manually build the AudioPluginHost.xcodeproj in the JUCE subdir
# XCODE_SCHEME_EXECUTABLE "${CMAKE_CURRENT_SOURCE_DIR}/deps/juce/extras/AudioPluginHost/Builds/MacOSX/build/Debug/AudioPluginHost.app"
# Let us build the target in Xcode
XCODE_GENERATE_SCHEME ON)
endif()
endforeach()
target_compile_definitions("${target_name}"
PUBLIC
JUCE_WEB_BROWSER=0
JUCE_USE_CURL=0
JUCE_VST3_CAN_REPLACE_VST2=0
JUCE_DISPLAY_SPLASH_SCREEN=0
JUCE_USE_CUSTOM_PLUGIN_STANDALONE_APP=1
JUCE_USE_WINDOWS_MEDIA_FORMAT=1
JUCE_LOAD_CURL_SYMBOLS_LAZILY=1
JUCE_ASIO=1
JUCE_WASAPI=1
JUCE_DIRECTSOUND=0
JUCE_JACK=1
JUCE_ALSA=1
JUCE_USE_ANDROID_OBOE=1
JUCE_USE_OBOE_STABILIZED_CALLBACK=1
JUCE_LOAD_CURL_SYMBOLS_LAZILY=1
FF_AUDIO_ALLOW_ALLOCATIONS_IN_MEASURE_BLOCK=0
SONOBUS_BUILD_VERSION="${VERSION}"
${PLAT_COMPILE_DEFS} )
juce_add_binary_data("${target_name}_SBData" SOURCES
Source/wordmaker.g
Source/DejaVuSans.ttf
localization/localized_de.txt
localization/localized_es.txt
localization/localized_fr.txt
localization/localized_it.txt
localization/localized_ja.txt
localization/localized_nl.txt
localization/localized_pt-br.txt
localization/localized_pt-pt.txt
localization/localized_ko.txt
localization/localized_ru.txt
images/bar_click.wav
images/beat_click.wav
images/chat.svg
images/chat_dots.svg
images/chevron_forward.svg
images/copy_icon.svg
images/dice_icon_128.png
images/dispfull.svg
images/dispminimal.svg
images/dots.svg
images/dots_icon.png
images/dots_menu.png
images/expand_arrow_active.svg
images/expand_arrow_inactive.svg
images/folder_icon.svg
images/hear-others.svg
images/incoming_allowed.svg
images/incoming_allowed_active.svg
images/incoming_disallowed.svg
images/lgc_bar.wav
images/link.svg
images/link_all.svg
images/link_up.svg
images/list_icon1.png
images/loop_icon.svg
images/met.svg
images/mic.svg
images/mic_disabled.svg
images/mic_pointing.svg
images/move_updown.svg
images/mute-others.svg
images/network.svg
images/outgoing_allowed.svg
images/outgoing_allowed_active.svg
images/outgoing_disallowed.svg
images/paste_icon.svg
images/pause_icon.svg
images/people.png
images/people.svg
images/person.png
images/person.svg
images/play_icon.svg
images/power.svg
images/power_sel.svg
images/record.svg
images/record_active.svg
images/record_active_alt.svg
images/rectape.svg
images/reset_buffer_icon.svg
images/send_group.svg
images/send_group_small.svg
images/settings_icon.svg
images/skipback_icon.svg
images/sonobus_logo_96.png
images/sonobus_title_small.png
images/speaker.svg
images/speaker_disabled.svg
images/triangle_disclosure.svg
images/triangle_disclosure_right.svg
images/urei_main.wav
images/x_icon.svg
)
set_target_properties(${target_name}_SBData PROPERTIES FOLDER "Targets")
if (UNIX AND NOT APPLE)
target_compile_options("${target_name}_SBData"
PRIVATE
-fPIC
)
find_library(OPUS_LIB opus)
if (NOT OPUS_LIB)
message(FATAL_ERROR "opus library not found, please install libopus develop package")
endif()
if (JUCE_LINUX_TARGET_ARCHITECTURE MATCHES "arm" )
message(STATUS "ARM platform, adding -march=native")
target_compile_options(${target_name} PUBLIC
-march=native
)
endif()
if (TARGET ${target_name}_Standalone)
# make linux executable all lower case
string(TOLOWER ${target_name} tmptargname)
set_target_properties("${target_name}_Standalone"
PROPERTIES
OUTPUT_NAME ${tmptargname}
)
endif()
endif()
target_link_directories("${target_name}" INTERFACE
${LIB_PATHS}
)
target_link_libraries("${target_name}"
PRIVATE
juce::juce_audio_utils
juce::juce_dsp
juce::juce_audio_plugin_client
ff_meters
${target_name}_SBData
opus
PUBLIC
juce::juce_recommended_config_flags
juce::juce_recommended_lto_flags
# juce::juce_recommended_warning_flags
)
endfunction()
# most of the targets
sono_add_custom_plugin_target(SonoBus SonoBus "${FormatsToBuild}" FALSE "NBus")
# Mobile targets
#sono_add_custom_plugin_target(SonoBusMobile "AUv3 Standalone" FALSE "NBus")
# add VSTi target
sono_add_custom_plugin_target(SonoBusInst "SonoBusInstrument" "VST3" TRUE "IBus")