File: SConstruct

package info (click to toggle)
enemylines7 0.6-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,640 kB
  • sloc: cpp: 21,756; makefile: 24
file content (23 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
list=[
	"block.cc",
	"cube.cc",
	"painter3.cc",
	"material.cc",
	"collider.cc",
	"blockinfo.cc",
	"debugger.cc",
	"selector2.cc",
	"infostack.cc",
	"destructor.cc",
	"merger.cc",
	"cacher.cc",
	"painter6.cc",
	"map2.cc"
]

Import('env')

obj = env.Object(
	list
)
Return('obj')