1 #include "../../common.xcconfig"
3 //------------------------------
6 // the basename of the vst, vst3, app, component, dpm, aaxplugin
7 BINARY_NAME = IPlugEffect
9 ADDITIONAL_INCLUDES = // $(SRCROOT)/../../../MyDSP/
10 //ADDITIONAL_LIBRARY_PATHS = //
13 //ADDITIONAL_APP_INCLUDES = /usr/local/include
15 // Flags to pass to compiler for all builds
16 GCC_CFLAGS = -Wno-write-strings
18 //------------------------------
19 // Preprocessor definitions
21 // Preprocessor definitions for all VST builds
22 VST_DEFS = VST_API VST_FORCE_DEPRECATED
26 // Preprocessor definitions for all AU builds
33 APP_DEFS = SA_API __MACOSX_CORE__
35 // Preprocessor definitions for all Debug builds
38 // Preprocessor definitions for all Release builds
39 RELEASE_DEFS = NDEBUG //DEMO_VERSION
41 // Preprocessor definitions for all Tracer builds
42 TRACER_DEFS = TRACER_BUILD NDEBUG
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=vIPlugEffect SWELL_APP_PREFIX=Swell_vIPlugEffect
48 //------------------------------
49 // Release build options
51 //Enable/Disable Profiling code
52 PROFILE = NO //NO, YES - enable this if you want to use shark to profile a plugin
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
58 //------------------------------
59 // Debug build options
60 DEBUG_OPTIMIZE = 0 //0,1,2,3,s
62 ARCHS = $(ARCHS_STANDARD_64_BIT)