Files
atari2600/lagueirtofile
T
raimon@prometeo fb5097733d -[NEW] reorganització de códi
-[NEW] mòdul display operatiu
-[NEW] mòdul tia pràcticament acabat (falta el reset)
-[NEW] glue code para poder compilar. Primera compilació
-[NEW] Afegides classes de UI
-[NEW] Afegides classes de debug desensamblador del z80, a convertir a 6502
2026-09-17 10:43:59 +02:00

46 lines
1.1 KiB
Plaintext

[linux]
cppflags = -Wall -Os -ffunction-sections -fdata-sections -std=c++20 -Isource
libs = -Wl,--gc-sections -lSDL3
executable = atari2600
sourcepath = source+
buildpath = build
exclude = z80*
[linux_debug] default
cppflags = -D DEBUG -g -std=c++20 -Isource
libs = -lSDL3
executable = atari2600_debug
sourcepath = source+
buildpath = build
exclude = z80*
[windows]
cppflags = -Wall -Os -ffunction-sections -fdata-sections -std=c++20 -Isource
libs = icon.res -Wl,--gc-sections -lmingw32 -lSDL3 -lopengl32 -mwindows -static-libstdc++ -static-libgcc -lpthread -mwindows
executable = atari2600.exe
sourcepath = source+
buildpath = build
[windows_debug]
cppflags = -D DEBUG -g -Wall -std=c++20 -Isource
libs = -lmingw32 -lSDL3
executable = atari2600_debug.exe
sourcepath = source+
buildpath = build
[macos]
compiler = clang++
cppflags = -Wall -Os -Wno-deprecated -ffunction-sections -fdata-sections -std=c++20 -Isource
libs = -lSDL3
executable = atari2600
sourcepath = source+
buildpath = build
[macos_debug]
compiler = clang++
cppflags = -D DEBUG -g -Wall -Wno-deprecated -std=c++20 -Isource
libs = -lSDL3
executable = atari2600_debug
sourcepath = source+
buildpath = build