Enable sdlada on MacOS (#105)

This commit is contained in:
Alejandro R Mosteo
2020-04-07 13:58:12 +02:00
committed by GitHub
parent 9c10a433e4
commit 66c8fb650d
+8 -2
View File
@@ -18,13 +18,19 @@ project-files = ["build/gnat/sdlada.gpr"]
linux = { SDL_PLATFORM = "linux" }
[general.available.'case(os)']
linux = true
'...' = false
linux = true
macos = true
windows = true
'...' = false
[[general.actions.'case(os)'.linux]]
type = "post-fetch"
command = ["make", "-C", "build/gnat", "SDL_PLATFORM=linux", "SDL_MODE=release"]
[[general.actions.'case(os)'.macos]]
type = "post-fetch"
command = ["make", "-C", "build/gnat", "SDL_PLATFORM=macosx", "SDL_MODE=release"]
[[general.actions.'case(os)'.windows]]
type = "post-fetch"
command = ["make", "-C", "build/gnat", "SDL_PLATFORM=windows", "SDL_MODE=release"]