classic mac os
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
This commit is contained in:
parent
6f9b3c12a7
commit
5315f4ec4d
34 changed files with 369 additions and 51 deletions
7
pl/ostype/ClassicMacOS68k.pl
Normal file
7
pl/ostype/ClassicMacOS68k.pl
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
use_backend("classicmacos");
|
||||
|
||||
$cc = $ENV{RETRO68_TOOLCHAIN_PATH}."/bin/m68k-apple-macos-gcc";
|
||||
$ar = $ENV{RETRO68_TOOLCHAIN_PATH}."/bin/m68k-apple-macos-ar";
|
||||
add_cflags("-DCLASSIC_MAC_OS");
|
||||
|
||||
1;
|
||||
7
pl/ostype/ClassicMacOSPPC.pl
Normal file
7
pl/ostype/ClassicMacOSPPC.pl
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
use_backend("classicmacos");
|
||||
|
||||
$cc = $ENV{RETRO68_TOOLCHAIN_PATH}."/bin/powerpc-apple-macos-gcc";
|
||||
$ar = $ENV{RETRO68_TOOLCHAIN_PATH}."/bin/powerpc-apple-macos-ar";
|
||||
add_cflags("-DCLASSIC_MAC_OS");
|
||||
|
||||
1;
|
||||
|
|
@ -30,6 +30,13 @@ if (grep(/^gdi$/, @backends)) {
|
|||
$gl_libs = "-lopengl32 -lglu32";
|
||||
}
|
||||
|
||||
if (grep(/^classicmacos$/, @backends)) {
|
||||
#add_cflags("-DCLASSIC_MAC_OS");
|
||||
new_object("src/backend/classicmacos.c");
|
||||
|
||||
$gl_libs = "";
|
||||
}
|
||||
|
||||
if (grep(/^wayland$/, @backends)) {
|
||||
add_cflags("-DUSE_WAYLAND");
|
||||
new_object("src/backend/wayland.c");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue