File: SCsub

package info (click to toggle)
cheesetracker 0.9.9-8
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,584 kB
  • ctags: 6,585
  • sloc: cpp: 43,276; python: 315; makefile: 54; ansic: 6
file content (21 lines) | stat: -rw-r--r-- 509 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Import('env');

env.Append(CXXFLAGS=['-Icommon/','-Icommon/defines/']);
#env.Append(CXXFLAGS=" -Icommon/defines ");

env.common_objects = []
env.qt_objects = []

Export('env');

SConscript('plugins/SCsub');
SConscript('os/SCsub');
SConscript('components/SCsub');
SConscript('defines/SCsub');
SConscript('drivers/SCsub');
SConscript('interface__QT/SCsub');
SConscript('property_server/SCsub');
SConscript('system/SCsub');

env.Library('common', env.common_objects)
env.Library('interface__qt', env.qt_objects)