13
0

Fix minor errors in temporal/wscript

This commit is contained in:
Marijn Kruisselbrink 2023-01-12 11:10:21 -08:00 committed by Robin Gareus
parent aa163b05ca
commit b0f5fea53a
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -73,13 +73,13 @@ def build(bld):
obj.target = 'temporal_static'
obj.uselib = 'GLIBMM GTHREAD XML LIBPBD'
obj.use = 'libpbd'
obj.vnum = TEMPORAL_VERSION
obj.vnum = TEMPORAL_LIB_VERSION
obj.install_path = ''
if bld.env['TEST_COVERAGE']:
obj.linkflags = ['--coverage']
obj.cflags = ['--coverage']
obj.cxxflags = ['--coverage']
obj.defines = ['PACKAGE="libevoral"']
obj.defines = ['PACKAGE="libtemporal"']
# Unit tests
obj = bld(features = 'cxx cxxprogram')