Create PoolBox project

This commit is contained in:
Jaby
2023-04-25 18:12:42 +02:00
parent 2090fa84f6
commit ed612b00a3
7 changed files with 131 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
ARTIFACT = PoolBox
BUILD_DIR = bin
#OVERLAY_CONFIG = Overlays.json
include $(JABY_ENGINE_DIR)/lib/Wildcard.mk
SRCS = $(call rwildcard, src, c cpp)
INCLUDES += -I$(JABY_ENGINE_DIR)/include
include $(JABY_ENGINE_DIR)/lib/Makefile
include $(JABY_ENGINE_DIR)/lib/PSEXETarget.mk
clean:
rm -fr $(OUTPUT_DIR)
rm -fr ../iso/*.bin
rm -fr ../iso/*.cue

View File

@@ -0,0 +1,12 @@
{
"slot_0": {
"main_area": {
"pattern": "bin/*/src/MainState/*.o"
}
},
"slot_1": {
"main_area2": {
"pattern": "bin/*/src/MainState2/*.o"
}
}
}

View File

@@ -0,0 +1,5 @@
#include <stdio.h>
void main() {
printf("Hello Planschbecken!\n");
}