wscript improvements
parent
7df413181f
commit
106f4efc17
5
wscript
5
wscript
|
|
@ -82,7 +82,6 @@ def build(ctx):
|
||||||
use = ctx.env.USE_BUILD_NORM + ctx.env.USE_BUILD_PROTOLIB,
|
use = ctx.env.USE_BUILD_NORM + ctx.env.USE_BUILD_PROTOLIB,
|
||||||
source = ['src/common/{0}.cpp'.format(x) for x in [
|
source = ['src/common/{0}.cpp'.format(x) for x in [
|
||||||
'galois',
|
'galois',
|
||||||
'normApi',
|
|
||||||
'normEncoder',
|
'normEncoder',
|
||||||
'normEncoderMDP',
|
'normEncoderMDP',
|
||||||
'normEncoderRS16',
|
'normEncoderRS16',
|
||||||
|
|
@ -105,7 +104,7 @@ def build(ctx):
|
||||||
use = ['protoObjs', 'normObjs'],
|
use = ['protoObjs', 'normObjs'],
|
||||||
defines = ['NORM_USE_DLL'] if 'windows' == system else [],
|
defines = ['NORM_USE_DLL'] if 'windows' == system else [],
|
||||||
vnum = VERSION,
|
vnum = VERSION,
|
||||||
source = [],
|
source = ['src/common/normApi.cpp'],
|
||||||
features = 'cxx cxxshlib',
|
features = 'cxx cxxshlib',
|
||||||
install_path = '${LIBDIR}',
|
install_path = '${LIBDIR}',
|
||||||
)
|
)
|
||||||
|
|
@ -117,7 +116,7 @@ def build(ctx):
|
||||||
export_includes = ['include'],
|
export_includes = ['include'],
|
||||||
use = ['protoObjs', 'normObjs'],
|
use = ['protoObjs', 'normObjs'],
|
||||||
vnum = VERSION,
|
vnum = VERSION,
|
||||||
source = [],
|
source = ['src/common/normApi.cpp'],
|
||||||
features = 'cxx cxxstlib',
|
features = 'cxx cxxstlib',
|
||||||
install_path = '${LIBDIR}',
|
install_path = '${LIBDIR}',
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue