mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +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,13 +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
|
||||
APPNAME = 'libardour_cp'
|
||||
LIBARDOUR_CP_LIB_VERSION = '4.1.0'
|
||||
|
||||
# Mandatory variables
|
||||
top = '.'
|
||||
out = 'build'
|
||||
|
|
@ -40,7 +33,6 @@ def build(bld):
|
|||
obj.name = 'libardour_cp'
|
||||
obj.target = 'ardourcp'
|
||||
obj.use = 'libardour'
|
||||
obj.vnum = LIBARDOUR_CP_LIB_VERSION
|
||||
obj.install_path = bld.env['LIBDIR']
|
||||
|
||||
def shutdown():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue