f@0
|
1 #include "../../common.xcconfig"
|
f@0
|
2
|
f@0
|
3 //------------------------------
|
f@0
|
4 // Global settings
|
f@0
|
5
|
f@0
|
6 // the basename of the vst, vst3, app, component, dpm, aaxplugin
|
f@0
|
7 BINARY_NAME = AccessibleSpectrumAnalyser
|
f@0
|
8
|
f@0
|
9 ADDITIONAL_INCLUDES = // $(SRCROOT)/../../../MyDSP/
|
f@0
|
10
|
f@0
|
11 // for jack headers
|
f@0
|
12 //ADDITIONAL_APP_INCLUDES = /usr/local/include
|
f@0
|
13
|
f@0
|
14 // Flags to pass to compiler for all builds
|
f@0
|
15 GCC_CFLAGS = -Wno-write-strings
|
f@0
|
16
|
f@0
|
17 //------------------------------
|
f@0
|
18 // Preprocessor definitions
|
f@0
|
19
|
f@0
|
20 // Preprocessor definitions for all VST builds
|
f@0
|
21 VST_DEFS = VST_API VST_FORCE_DEPRECATED
|
f@0
|
22
|
f@0
|
23 VST3_DEFS = VST3_API
|
f@0
|
24
|
f@0
|
25 // Preprocessor definitions for all AU builds
|
f@0
|
26 AU_DEFS = AU_API
|
f@0
|
27
|
f@0
|
28 RTAS_DEFS = RTAS_API
|
f@0
|
29
|
f@0
|
30 AAX_DEFS = AAX_API
|
f@0
|
31
|
f@0
|
32 APP_DEFS = SA_API __MACOSX_CORE__ WDL_NO_DEFINE_MINMAX//__UNIX_JACK__
|
f@0
|
33
|
f@0
|
34 IOS_DEFS = SA_API
|
f@0
|
35 // Preprocessor definitions for all Debug builds
|
f@0
|
36 DEBUG_DEFS = _DEBUG
|
f@0
|
37
|
f@0
|
38 // Preprocessor definitions for all Release builds
|
f@0
|
39 RELEASE_DEFS = NDEBUG //DEMO_VERSION
|
f@0
|
40
|
f@0
|
41 // Preprocessor definitions for all Tracer builds
|
f@0
|
42 TRACER_DEFS = TRACER_BUILD NDEBUG
|
f@0
|
43
|
f@0
|
44 // Preprocessor definitions for cocoa uniqueness (all builds)
|
f@0
|
45 // If you want to use swell inside of iplug, you need to make SWELL_APP_PREFIX unique too
|
f@0
|
46 COCOA_DEFS = SWELL_CLEANUP_ON_UNLOAD COCOA_PREFIX=vAccessibleSpectrumAnalyser SWELL_APP_PREFIX=Swell_vAccessibleSpectrumAnalyser
|
f@0
|
47
|
f@0
|
48 //------------------------------
|
f@0
|
49 // Release build options
|
f@0
|
50
|
f@0
|
51 //Enable/Disable Profiling code
|
f@0
|
52 PROFILE = NO //NO, YES - enable this if you want to use shark to profile a plugin
|
f@0
|
53
|
f@0
|
54 // GCC optimization level -
|
f@0
|
55 // None: [-O0] Fast: [-O, -O1] Faster:[-O2] Fastest: [-O3] Fastest, smallest: Optimize for size. [-Os]
|
f@0
|
56 RELEASE_OPTIMIZE = 3 //0,1,2,3,s
|
f@0
|
57
|
f@0
|
58 //------------------------------
|
f@0
|
59 // Debug build options
|
f@0
|
60 DEBUG_OPTIMIZE = 0 //0,1,2,3,s
|
f@0
|
61
|