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