Don’t install test programs

Signed-off-by: Nils Philippsen <nils@tiptoe.de>
This commit is contained in:
Nils Philippsen 2025-05-01 23:23:45 +02:00 committed by Robin Gareus
parent d685b000c6
commit 3c63a81c1c
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 2 additions and 2 deletions

View file

@ -727,8 +727,7 @@ def create_ardour_test_program(bld, includes, name, target, sources):
testobj.use = [ 'testcommon' ]
testobj.name = name
testobj.target = target
# not sure about install path
testobj.install_path = bld.env['LIBDIR']
testobj.install_path = ''
testobj.defines = [
'PACKAGE="libardour' + bld.env['MAJOR'] + 'test"',
'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',

View file

@ -209,3 +209,4 @@ def build(bld):
testobj.defines = [ 'PACKAGE="' + I18N_PACKAGE + '"' ]
if sys.platform != 'darwin' and bld.env['build_target'] != 'mingw':
testobj.lib = ['rt', 'dl']
testobj.install_path = ''