13
0

No need to yell.

This commit is contained in:
David Robillard 2014-12-17 22:28:44 -05:00
parent 9e4b874b85
commit 64490e88e4

View File

@ -117,11 +117,9 @@ def build(bld):
# Library
if bld.is_defined ('INTERNAL_SHARED_LIBS'):
print('BUILD SHARED LIB')
obj = bld.shlib(features = 'cxx cxxshlib', source=libpbd_sources)
obj.defines = [ 'LIBPBD_DLL_EXPORTS=1' ]
else:
print('BUILD STATIC LIB')
obj = bld.stlib(features = 'cxx cxxstlib', source=libpbd_sources)
obj.cxxflags = [ '-fPIC' ]
obj.cflags = [ '-fPIC' ]