change comments style

This commit is contained in:
Bassem Girgis
2017-09-27 01:20:27 -05:00
parent 912f188eb3
commit 49ce99e992

View File

@@ -16,9 +16,9 @@ Help("""
""") """)
# """
# Processing arguments Processing arguments
# """
debugArg = ARGUMENTS.get('DEBUG', '1') debugArg = ARGUMENTS.get('DEBUG', '1')
if debugArg not in ['0', '1']: if debugArg not in ['0', '1']:
raise RuntimeError('Check the DEBUG input argument.') raise RuntimeError('Check the DEBUG input argument.')
@@ -30,9 +30,9 @@ if assertArg not in ['0', '1']:
compilerName = ARGUMENTS.get('COMPILER', '') compilerName = ARGUMENTS.get('COMPILER', '')
buildName = ARGUMENTS.get('BUILDNAME', 'default') buildName = ARGUMENTS.get('BUILDNAME', 'default')
# """
# Initializing the environment Initializing the environment
# """
env = Environment(ENV=os.environ, env = Environment(ENV=os.environ,
CC='clang', CC='clang',
CXX='clang++') CXX='clang++')
@@ -67,9 +67,9 @@ if assertArg == '0':
env['CPPDEFINES'] = cppDefine env['CPPDEFINES'] = cppDefine
# """
# Paths setup Paths setup
# """
env.srcDir = Dir('#').abspath env.srcDir = Dir('#').abspath
@@ -80,9 +80,9 @@ VariantDir(variant_dir=env.buildDir,
src_dir=env.srcDir, src_dir=env.srcDir,
duplicate=0) duplicate=0)
# """
# Add build targets Add build targets
# """
SConscript(os.path.join(env.buildDir, 'SConscript'), SConscript(os.path.join(env.buildDir, 'SConscript'),
exports={'env' : env}) exports={'env' : env})