Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

macOS x86_64 Support #15747

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ vs_Community.exe
!.vscode/extensions.json
art/build_html.bat
art/build_html-debug.bat
# macOS annoying file
*.DS_Store
7 changes: 4 additions & 3 deletions Project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@
<section if="officialBuild">
<define name="TITLE_SCREEN_EASTER_EGG"/>
<define name="BASE_GAME_FILES" />
<define name="VIDEOS_ALLOWED" if="windows || linux || android" unless="32bits"/> <!-- IF YOU WANT TO USE VIDEOS ON YOUR SOURCE MOD, GET THIS LINE OUTSIDE OF THE SECTION -->
<define name="VIDEOS_ALLOWED" if="windows || linux || android || mac" unless="32bits"/> <!-- IF YOU WANT TO USE VIDEOS ON YOUR SOURCE MOD, GET THIS LINE OUTSIDE OF THE SECTION -->
</section>

<!-- ____________________________ Window Settings ___________________________ -->

<!--These window settings apply to all targets-->
Expand Down Expand Up @@ -98,7 +97,9 @@
<define name="CHECK_FOR_UPDATES" if="desktop officialBuild"/>

<section if="MODS_ALLOWED">
<assets path='example_mods' rename='mods' embed='false' type='template'/>
<assets path='example_mods' rename='mods' embed='false' type='template' unless="mac"/>
<assets path='example_mods' rename='mods' embed='false' if="mac"/>
<!-- Template type won't work with macOS -->
</section>
<assets path='art/readme.txt' rename='do NOT readme.txt' />

Expand Down
Loading