Use "project_name" in atom.gyp as default target in build.py

This commit is contained in:
Cheng Zhao 2015-04-12 21:52:56 +08:00
parent 43fe82e1e5
commit 4e7ed50162

View file

@ -5,6 +5,8 @@ import os
import subprocess
import sys
from lib.util import atom_gyp
CONFIGURATIONS = ['Release', 'Debug']
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
@ -26,7 +28,7 @@ def main():
def parse_args():
parser = argparse.ArgumentParser(description='Build atom-shell')
parser = argparse.ArgumentParser(description='Build project')
parser.add_argument('-c', '--configuration',
help='Build with Release or Debug configuration',
nargs='+',
@ -34,7 +36,7 @@ def parse_args():
required=False)
parser.add_argument('-t', '--target',
help='Build specified target',
default='atom',
default=atom_gyp()['project_name%'],
required=False)
return parser.parse_args()