Removed core as a submodule... It is needed to clone the right core manually
This commit is contained in:
parent
86fbd46a03
commit
9634c65cbf
|
|
@ -1,2 +1,3 @@
|
||||||
build
|
build
|
||||||
core
|
SDL2_Core
|
||||||
|
Casio_Core
|
||||||
|
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
[submodule "SDL2_Core"]
|
|
||||||
path = core
|
|
||||||
url = https://gitea.skadubpc.net/ulysse/2D_Engine_SDL2_Core.git
|
|
||||||
|
|
||||||
[submodule "Casio_Core"]
|
|
||||||
path = core
|
|
||||||
url = https://gitea.skadubpc.net/ulysse/2D_Engine_Casio_Core.git
|
|
||||||
|
|
@ -4,7 +4,8 @@
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"includePath": [
|
"includePath": [
|
||||||
"src/**/headers",
|
"src/**/headers",
|
||||||
"core/src/headers"
|
"SDL2_Core/src/headers",
|
||||||
|
"Casio_Core/src/headers"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
"program": "${workspaceRoot}/build/2D_Engine",
|
"program": "${workspaceRoot}/build/2D_Engine",
|
||||||
"args": [],
|
"args": [],
|
||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"cwd": "${fileDirname}",
|
"cwd": "${workspaceRoot}",
|
||||||
"environment": [],
|
"environment": [],
|
||||||
"externalConsole": false,
|
"externalConsole": false,
|
||||||
"MIMode": "gdb",
|
"MIMode": "gdb",
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -26,7 +26,7 @@ all: build_core build_src
|
||||||
|
|
||||||
# Sub Makefiles
|
# Sub Makefiles
|
||||||
SOURCE_DIR = src
|
SOURCE_DIR = src
|
||||||
CORE_DIR = core/src
|
CORE_DIR = SDL2_Core/src
|
||||||
ASSETS_DIR = assets
|
ASSETS_DIR = assets
|
||||||
|
|
||||||
include $(CORE_DIR)/Makefile
|
include $(CORE_DIR)/Makefile
|
||||||
|
|
|
||||||
1
core
1
core
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 54204542c14305a28b5b0f7d4303a685565126ac
|
|
||||||
Loading…
Reference in New Issue