mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
added libglademm
git-svn-id: svn://localhost/trunk/ardour2@78 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
f34ef3c93a
commit
c9f039a924
19 changed files with 2399 additions and 0 deletions
14
libs/libglademm/SConscript
Normal file
14
libs/libglademm/SConscript
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# -*- python -*-
|
||||
import glob
|
||||
import os
|
||||
|
||||
Import('env libraries')
|
||||
|
||||
libglademm_files = glob.glob('libglademm/*.cc')
|
||||
|
||||
libglademm = env.Copy()
|
||||
libglademm.Merge([libraries['gtk2'], libraries['glade2'], libraries['sigc2'], libraries['glibmm2'], libraries['pangomm'], libraries['atkmm'], libraries['gdkmm2'], libraries['gtkmm2']])
|
||||
|
||||
libglade = libglademm.StaticLibrary('libglademm', libglademm_files)
|
||||
|
||||
Default(libglade)
|
||||
Loading…
Add table
Add a link
Reference in a new issue