Create PoolBox project
This commit is contained in:
17
examples/PoolBox/application/Makefile
Normal file
17
examples/PoolBox/application/Makefile
Normal 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
|
12
examples/PoolBox/application/Overlays.json
Normal file
12
examples/PoolBox/application/Overlays.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"slot_0": {
|
||||
"main_area": {
|
||||
"pattern": "bin/*/src/MainState/*.o"
|
||||
}
|
||||
},
|
||||
"slot_1": {
|
||||
"main_area2": {
|
||||
"pattern": "bin/*/src/MainState2/*.o"
|
||||
}
|
||||
}
|
||||
}
|
5
examples/PoolBox/application/src/main.cpp
Normal file
5
examples/PoolBox/application/src/main.cpp
Normal file
@@ -0,0 +1,5 @@
|
||||
#include <stdio.h>
|
||||
|
||||
void main() {
|
||||
printf("Hello Planschbecken!\n");
|
||||
}
|
Reference in New Issue
Block a user