mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
remove lib versioning for internal plugins
Those objects do not have a versioned API by themselves. This fixes issues with duplicate deployment (OSX, Linux bundles: cp) and ardour listing control-surfaces multiple times (file index plugin dir).
This commit is contained in:
parent
6fd947fe82
commit
8a93a87db0
15 changed files with 0 additions and 111 deletions
|
|
@ -4,11 +4,6 @@ import os
|
|||
import sys
|
||||
import re
|
||||
|
||||
# Library version (UNIX style major, minor, micro)
|
||||
# major increment <=> incompatible changes
|
||||
# minor increment <=> compatible changes (additions)
|
||||
# micro increment <=> no interface changes
|
||||
WAVESAUDIOBACKEND_VERSION = '0.0.1'
|
||||
I18N_PACKAGE = 'wavesaudio-backend'
|
||||
|
||||
# Mandatory variables
|
||||
|
|
@ -95,8 +90,6 @@ def build(bld):
|
|||
obj.use = 'libardour libpbd'
|
||||
if bld.env['build_target'] == 'mingw':
|
||||
obj.uselib = ['PORTAUDIO']
|
||||
if (bld.env['build_target'] != 'mingw'):
|
||||
obj.vnum = WAVESAUDIOBACKEND_VERSION
|
||||
obj.install_path = os.path.join(bld.env['LIBDIR'], 'backends')
|
||||
|
||||
if bld.env['build_target']== 'mingw':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue