Files
ddw3/tools/generate_iso_deps.py
Filipe Rodrigues 8d668cccb2 Renamed most references to dw3 to dw2003, as that's the game being decompiled currently.
Removed unused `/dw3/DUMMY` .gitattribute entry.

`dw3` decompilation will be added later.
2022-10-21 19:50:15 +01:00

13 lines
278 B
Python
Executable File

#!/bin/env python3
import xml.etree.ElementTree as ET
# Parse the xml file
tree = ET.parse('dw2003-bin.xml')
root = tree.getroot()
files = list(root.iter("file"))
files = map(lambda file: file.get("source"), files)
files = ' '.join(files)
print(f"build/dw2003.bin: {files}")