forked from desktop-app/cmake_helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_cmake.py
72 lines (66 loc) · 2.62 KB
/
run_cmake.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
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
61
62
63
64
65
66
67
68
69
70
71
72
# This file is part of Desktop App Toolkit,
# a set of libraries for developing nice desktop applications.
#
# For license and copyright information please follow this link:
# https://github.com/desktop-app/legal/blob/master/LEGAL
import sys, os, shutil, subprocess
def run(project, arguments, buildType=''):
scriptPath = os.path.dirname(os.path.realpath(__file__))
basePath = scriptPath + '/../out/' + buildType
cmake = ['cmake']
vsArch = ''
explicitGenerator = False
for arg in arguments:
if arg == 'debug':
cmake.append('-DCMAKE_BUILD_TYPE=Debug')
elif arg == 'x86' or arg == 'x64' or arg == 'arm':
vsArch = arg
elif arg != 'force':
if arg.startswith('-G'):
explicitGenerator = True
cmake.append(arg)
if sys.platform == 'win32' and not explicitGenerator:
if vsArch == 'x64':
cmake.append('-Ax64')
elif vsArch == 'arm':
cmake.append('-AARM64')
else:
cmake.append('-AWin32') # default
elif vsArch != '':
print("[ERROR] x86/x64/arm switch is supported only with Visual Studio.")
return 1
elif sys.platform == 'darwin':
if not explicitGenerator:
cmake.append('-GXcode')
else:
if not explicitGenerator:
cmake.append('-GNinja Multi-Config')
elif buildType:
cmake.append('-DCMAKE_BUILD_TYPE=' + buildType)
elif not '-DCMAKE_BUILD_TYPE=Debug' in cmake:
cmake.append('-DCMAKE_BUILD_TYPE=Release')
specialTarget = ''
specialTargetFile = scriptPath + '/../' + project + '/build/target'
if os.path.isfile(specialTargetFile):
with open(specialTargetFile, 'r') as f:
for line in f:
target = line.strip()
if len(target) > 0:
cmake.append('-DDESKTOP_APP_SPECIAL_TARGET=' + target)
cmake.extend(['-Werror=dev', '-Werror=deprecated', '--warn-uninitialized', '..' if not buildType else '../..'])
command = '"' + '" "'.join(cmake) + '"'
if not os.path.exists(basePath):
os.makedirs(basePath)
elif 'force' in arguments:
paths = os.listdir(basePath)
for path in paths:
low = path.lower();
if not low.startswith('debug') and not low.startswith('release'):
full = basePath + '/' + path
if os.path.isdir(full):
shutil.rmtree(full, ignore_errors=False)
else:
os.remove(full)
print('Cleared previous.')
os.chdir(basePath)
return subprocess.call(command, shell=True)