17 lines
378 B
Python
17 lines
378 B
Python
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
import os
|
|
|
|
binary = Tool.Program(builder, 'entlump_parser')
|
|
|
|
binary.sources += [
|
|
'console_main.cpp',
|
|
os.path.join(builder.options.sm_path, 'core', 'logic', 'LumpManager.cpp'),
|
|
]
|
|
|
|
binary.compiler.includes += [
|
|
os.path.join(builder.sourcePath),
|
|
os.path.join(builder.options.sm_path, 'core', 'logic'),
|
|
]
|
|
|
|
builder.Add(binary)
|