File: SConscript

package info (click to toggle)
nxt-firmware 1.29.7-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,244 kB
  • sloc: ansic: 20,993; asm: 2,349; pascal: 792; python: 456; makefile: 142; sh: 41; xml: 22
file content (13 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
# This scons build script is used by NxOS

from glob import glob

Import('env')


for source in glob('Debugger/*.[cS]'):
    obj = env.Object(source.split('.')[0], source)
    env.Append(NXOS_DEBUG=obj)

if env['WITH_DOXYGEN']:
    env.Doxygen('Doxyfile')