forked from olilarkin/wdl-ol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.xcconfig
60 lines (46 loc) · 2.11 KB
/
common.xcconfig
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
// common.xcconfig
// this file sets the compiler and base SDK for the IPlug projects and the lice library xcode projects
// along with some other global build variables
// this is used for Developer ID / Appstore code-signing and is used in the makedist-mac shell script
//CERTIFICATE_ID = OS X Developer
// Which compiler to use
//COMPILER = com.apple.compilers.gcc.4_2 // use this with xcode3
//COMPILER = com.intel.compilers.icc.12_1_0
//COMPILER = com.apple.compilers.llvmgcc42 // use this ...
//COMPILER = com.apple.compilers.llvm.clang.1_0 // or this with xcode4+/10.7+
// which osx sdk to compile against - BASE_SDK rather than SDKROOT so we can override other xcconfigs (avid's)
BASE_SDK = macosx10.5
//BASE_SDK = macosx10.6
//BASE_SDK = macosx10.7 // Carbon GUIs do not work fully with the 10.7 or higher sdks
//BASE_SDK = macosx10.8
//BASE_SDK = macosx10.9
//CLANG_CXX_LANGUAGE_STANDARD = c++0x
//CLANG_CXX_LIBRARY = libc++
// the minimum OS to support
DEPLOYMENT_TARGET = 10.5
// Where the SDKs etc are located in relation to the plugin xcode project
WORKSPACE_ROOT = ~/Work/Projects/AudioPlugins
WDL_PATH = $(WORKSPACE_ROOT)/WDL
IPLUG_PATH = $(WDL_PATH)/IPlug
VST3_SDK = $(WORKSPACE_ROOT)/VST3_SDK
PT9_SDK = $(WORKSPACE_ROOT)/PT9_SDK
AAX_SDK = $(WORKSPACE_ROOT)/AAX_SDK
CA_SDK = $(WORKSPACE_ROOT)/CA_SDK
SHARED_PRECOMPS_DIR = $(WORKSPACE_ROOT)/PCH
GCC_INCREASE_PRECOMPILED_HEADER_SHARING = YES
CLANG_LINK_OBJC_RUNTIME = NO
// Where to build the plugins / app bundles ...
// build to system plugin folder
// you need to explicitly add write permissions to put stuff here
// you can also build to the user plugin folder, but the installer scripts assume that the binarys are in the system folder
// RTAS and AAX folders should be the location of the PT Dev build plug-ins folders
// Standalone APP folder
APP_FOLDER = ~/Library/Audio/Plug-Ins/Standalone
// AU folder
AU_FOLDER = ~/Library/Audio/Plug-Ins/Components
// VST/VST3 folders
VST_FOLDER = ~/Library/Audio/Plug-Ins/VST
VST3_FOLDER = ~/Library/Audio/Plug-Ins/VST3
// RTAS/AAX folders
RTAS_FOLDER = ~/Library/Audio/Plug-Ins/RTAS
AAX_FOLDER = ~/Library/Audio/Plug-Ins/AAX