Update template with latest tools; Add install batch file for easy usage with VSCode addon
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
ARTIFACT = #{ProjectName}
|
||||
BUILD_DIR = bin
|
||||
|
||||
#OVERLAY_CONFIG = Overlays.json
|
||||
|
||||
include $(JABY_ENGINE_DIR)/lib/Wildcard.mk
|
||||
SRCS = $(call rwildcard, src, c cpp)
|
||||
|
||||
LIBS = -L$(JABY_ENGINE_DIR)/lib/PSX-$(BUILD_PROFILE) -lJabyEngine
|
||||
INCLUDES += -I$(JABY_ENGINE_DIR)/include
|
||||
|
||||
include $(JABY_ENGINE_DIR)/lib/Makefile
|
||||
include $(JABY_ENGINE_DIR)/lib/PSEXETarget.mk
|
||||
|
12
template/JabyEngine-PSX_Game/application/Overlays.json
Normal file
12
template/JabyEngine-PSX_Game/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"
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,3 +1,5 @@
|
||||
int main() {
|
||||
return 0;
|
||||
#include <stdio.h>
|
||||
|
||||
void main() {
|
||||
printf("Hello Planschbecken!\n");
|
||||
}
|
Reference in New Issue
Block a user