Change library suffix from _debug to D for debug build.

And no suffix for a release build.
This commit is contained in:
Nils O. Selåsdal
2014-03-02 03:59:18 +01:00
parent 0c3fc0f31d
commit c3a900ea53
3 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
import platform
Import('env', 'build_type', 'prefix', 'version_info', 'test_xml')
Import('env', 'build_type', 'prefix', 'lib_suffix', 'version_info', 'test_xml')
test_env = env.Clone()
test_env.Append(LIBPATH = ['#build/src']);
test_env.Append(LIBS = ['ucore_' + build_type, 'check'])
test_env.Append(LIBS = ['ucore' + lib_suffix, 'check'])
system = platform.system()