<feed xmlns='http://www.w3.org/2005/Atom'>
<title>OTRExporter/CMakeLists.txt, branch develop</title>
<subtitle>Tooling to extract assets from ROMs and build OTR archives for Ship-based ports</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/OTRExporter/'/>
<entry>
<title>Windows ARM64 support (#40)</title>
<updated>2025-06-22T18:36:36+00:00</updated>
<author>
<name>louist103</name>
<email>35883445+louist103@users.noreply.github.com</email>
</author>
<published>2025-06-22T18:36:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/OTRExporter/commit/?id=33f20ca367dc036291df9cb9a9304c542deb66f9'/>
<id>33f20ca367dc036291df9cb9a9304c542deb66f9</id>
<content type='text'>
* WIP ARM64

* Add O2 to release</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* WIP ARM64

* Add O2 to release</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some MM specific things</title>
<updated>2025-03-29T19:16:10+00:00</updated>
<author>
<name>louist103</name>
<email>35883445+louist103@users.noreply.github.com</email>
</author>
<published>2025-03-29T19:16:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/OTRExporter/commit/?id=a9dea598b603336cf23f25464cae9eb9c399dbd9'/>
<id>a9dea598b603336cf23f25464cae9eb9c399dbd9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix cutscenes and cmake lists</title>
<updated>2025-03-29T17:50:21+00:00</updated>
<author>
<name>louist103</name>
<email>35883445+louist103@users.noreply.github.com</email>
</author>
<published>2023-11-23T02:22:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/OTRExporter/commit/?id=ec9bae7dc523292c5dd8ca5ef5ac81bd697893f6'/>
<id>ec9bae7dc523292c5dd8ca5ef5ac81bd697893f6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>detangle zapdutils (#19)</title>
<updated>2024-05-02T02:26:53+00:00</updated>
<author>
<name>briaguya</name>
<email>70942617+briaguya-ai@users.noreply.github.com</email>
</author>
<published>2024-05-02T02:26:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/OTRExporter/commit/?id=c1e30dad1b333a6fb19a6b00b680d17e6f7d773a'/>
<id>c1e30dad1b333a6fb19a6b00b680d17e6f7d773a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Import libultraship as a submodule (#1943)</title>
<updated>2022-11-14T10:22:34+00:00</updated>
<author>
<name>briaguya</name>
<email>70942617+briaguya-ai@users.noreply.github.com</email>
</author>
<published>2022-11-14T10:22:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/OTRExporter/commit/?id=4203c1f30c9f27e394a24d7ab07082086c1d1b74'/>
<id>4203c1f30c9f27e394a24d7ab07082086c1d1b74</id>
<content type='text'>
Co-authored-by: briaguya &lt;briaguya&gt;
Co-authored-by: Christopher Leggett &lt;chris@leggett.dev&gt;
Co-authored-by: David Chavez &lt;davi@dcvz.io&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: briaguya &lt;briaguya&gt;
Co-authored-by: Christopher Leggett &lt;chris@leggett.dev&gt;
Co-authored-by: David Chavez &lt;davi@dcvz.io&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[cmake] Improve OTRExporter asset extraction script, Lower required CMake to 3.16 (#1196)</title>
<updated>2022-08-16T07:34:30+00:00</updated>
<author>
<name>Zaxus125</name>
<email>109976242+Zaxus125@users.noreply.github.com</email>
</author>
<published>2022-08-16T07:34:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/OTRExporter/commit/?id=4483fbe8cc50ca77e79da24f149a87dbb3de75f4'/>
<id>4483fbe8cc50ca77e79da24f149a87dbb3de75f4</id>
<content type='text'>
* supply ZAPD.out path as an argument to extract_assets.py rather than regenerating the script

Generating an entirely new script file to change a string is excessive.
Instead, extract_assets.py takes in one optional positional argument that
contains the path to ZAPD.out, the original purpose for the string
replacement.

This also removes the need for the file(CHMOD ...) command, which bumps
the minimum cmake version all the way up to 3.19.

Additionally, there was an extra script being generated in
OTRExporter/CMakeLists.txt that used the same CHMOD logic, but did not
accurately declare its minimum version to 3.19, this removes that unused
logic.

* OTRExporter: accept a rom path as an argument to extract_assets.py</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* supply ZAPD.out path as an argument to extract_assets.py rather than regenerating the script

Generating an entirely new script file to change a string is excessive.
Instead, extract_assets.py takes in one optional positional argument that
contains the path to ZAPD.out, the original purpose for the string
replacement.

This also removes the need for the file(CHMOD ...) command, which bumps
the minimum cmake version all the way up to 3.19.

Additionally, there was an extra script being generated in
OTRExporter/CMakeLists.txt that used the same CHMOD logic, but did not
accurately declare its minimum version to 3.19, this removes that unused
logic.

* OTRExporter: accept a rom path as an argument to extract_assets.py</pre>
</div>
</content>
</entry>
<entry>
<title>Move to cmake across all platforms (#363)</title>
<updated>2022-08-05T05:59:19+00:00</updated>
<author>
<name>th-2021</name>
<email>90853655+th-2021@users.noreply.github.com</email>
</author>
<published>2022-08-05T05:59:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/OTRExporter/commit/?id=026039b290b100940c6c4d694d6c999fd4ed07b7'/>
<id>026039b290b100940c6c4d694d6c999fd4ed07b7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
