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