-
Notifications
You must be signed in to change notification settings - Fork 1
/
constants.py
30 lines (23 loc) · 854 Bytes
/
constants.py
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
#!/usr/bin/env python3
global kCMakeListsFile
kCMakeListsFile = "CMakeLists.txt"
global kHeaderKey
kHeaderKey = "headers"
global kSourceKey
kSourceKey = "source"
global kDirectoryKey
kDirectoryKey = "dir"
global kCMakeListsKey
kCMakeListsKey = "cmake"
global kTargetType_Executable
kTargetType_Executable = "executable"
global kTargetType_Library
kTargetType_Library = "library"
global kDefaultHeaderExtensions
kDefaultHeaderExtensions = ['h','hpp','in']
global kFileEntryMacro
kFileEntryMacro = "list(APPEND {0} {1})"
global kExcludeDirectoryList
kExcludeDirectoryList = ['*.framework', 'lib', 'libs', 'bin', 'doc', '*.xcodeproj', '*.xcassets', 'gradle']
global kExcludeFileList
kExcludeFileList = ['*.sln', '*.vcproj', '*.vcxproj*', 'Makefile*', '*.lproj', '*.a', '*.dll', '*.lib', '*.exe', '*.dylib', '*.sh', '*.md', '*.jucer', '*.properties']