1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-05 23:44:53 +00:00

Move roms to build folder (#1651)

* Move built roms to build directory, along with rename map and linker script

* PR review

* sym_info fix

* Revert docs/tutorial/data.md change
This commit is contained in:
Derek Hensley 2024-02-02 13:34:20 -08:00 committed by GitHub
parent 8db76a27da
commit 5785c7adfb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 24 additions and 22 deletions

View file

@ -3,8 +3,8 @@ def add_custom_arguments(parser):
def apply(config, args):
version = args.oot_version
config['mapfile'] = f'build/{version}/z64.map'
config['myimg'] = f'oot-{version}.z64'
config['mapfile'] = f'build/{version}/oot-{version}.map'
config['myimg'] = f'build/{version}/oot-{version}.z64'
config['baseimg'] = f'baseroms/{version}/baserom-decompressed.z64'
config['makeflags'] = [f'VERSION={version}']
config['source_directories'] = ['src', 'include', 'spec']