Add functions for working with entity lumps (#1673)

This commit is contained in:
nosoop
2022-09-05 15:44:58 -07:00
committed by GitHub
parent 05aa3fd39d
commit 21740d9a26
16 changed files with 1288 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
# 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)