-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathOctoid.Consts.pas
37 lines (28 loc) · 997 Bytes
/
Octoid.Consts.pas
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
unit Octoid.Consts;
interface
const
cSDKUserIncludeFolder = 'usr\include\';
cSDKFrameworksFolder = 'System\Library\Frameworks\';
cSDKPrivateFrameworksFolder = 'System\Library\PrivateFrameworks\';
cSDKUserLibClangIncludePath = 'usr\lib\clang\include';
cAPIDeprecatedStartsWith = 'API_DEPRECATED';
cAPINSAvailableStartsWith = 'NS_AVAILABLE';
cTargetPlatformMacOS = 'MACOS';
cTargetPlatformIOS = 'IOS';
cSwitchHelpWord = '--help';
cSwitchHelpSymbol = '--?';
cSwitchSdkRoot = '--sdkroot';
cSwitchClangInclude = '--clanginclude';
cSwitchFramework = '--unit';
cSwitchTargetPlatform = '--platform';
cSwitchOutputPath = '--out';
cSwitchTypeMapFile = '--typemap';
cSwitchTypeUnitMapFile = '--typeunitmap';
cSwitchDump = '--dump';
cSwitchErrors = '--errors';
cLLVMRegistryPath = 'Software\LLVM\LLVM';
cLLVMClangFolder = 'lib\clang';
cLLVMClangIncludeFolder = 'include';
cErrorLimitDefault = 50;
implementation
end.