From ff1440b6d61166dabdbf781d69cb0cfcc388b17b Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 27 Feb 2014 21:57:20 -0800 Subject: [PATCH] Add "Shared" COMSTR variants --- SConstruct | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 96c96fd..287b82c 100644 --- a/SConstruct +++ b/SConstruct @@ -90,11 +90,14 @@ common_env.Append(CXXFLAGS='{} -std=c++11'.format(CFLAGS)) BUILD_CMDS = get_bool_argument(ARGUMENTS.get('BUILD_CMDS', BUILD_CMDS)) if not BUILD_CMDS: def generate_comstr(action): - return '{:>18}: $TARGET'.format(action) + return '{:>25}: $TARGET'.format(action) common_env['ASCOMSTR'] = generate_comstr('Assembling') common_env['CCCOMSTR'] = generate_comstr('Building (C)') + common_env['SHCCCOMSTR'] = generate_comstr('Building (C, Shared)') common_env['CXXCOMSTR'] = generate_comstr('Building (C++)') + common_env['SHCXXCOMSTR'] = generate_comstr('Building (C++, Shared)') common_env['LINKCOMSTR'] = generate_comstr('Linking') + common_env['SHLINKCOMSTR'] = generate_comstr('Linking (Shared)') common_env['ARCOMSTR'] = generate_comstr('Archiving') common_env['RANLIBCOMSTR'] = generate_comstr('Indexing')