mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +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
|
|
@ -2,12 +2,6 @@
|
|||
from waflib.extras import autowaf as autowaf
|
||||
import os
|
||||
|
||||
# Library version (UNIX style major, minor, micro)
|
||||
# major increment <=> incompatible changes
|
||||
# minor increment <=> compatible changes (additions)
|
||||
# micro increment <=> no interface changes
|
||||
LIBARDOUR_PANVBAP_LIB_VERSION = '1.0.0'
|
||||
|
||||
# Mandatory variables
|
||||
top = '.'
|
||||
out = 'build'
|
||||
|
|
@ -28,7 +22,6 @@ def build(bld):
|
|||
obj.name = 'libardour_panvbap'
|
||||
obj.target = 'panvbap'
|
||||
obj.use = 'libardour libardour_cp libpbd'
|
||||
obj.vnum = LIBARDOUR_PANVBAP_LIB_VERSION
|
||||
obj.install_path = os.path.join(bld.env['LIBDIR'], 'panners')
|
||||
|
||||
def shutdown():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue