diff --git a/Code/src/JabyEngine.cpp b/Code/src/JabyEngine.cpp index 58569506..128eaa5a 100644 --- a/Code/src/JabyEngine.cpp +++ b/Code/src/JabyEngine.cpp @@ -1,3 +1,4 @@ +#include "JabyEngine.h" #include int main() diff --git a/Code/src/JabyEngine.h b/Code/src/JabyEngine.h new file mode 100644 index 00000000..24a176e0 --- /dev/null +++ b/Code/src/JabyEngine.h @@ -0,0 +1,4 @@ +#ifndef JABYENGINE_H +#define JABYENGINE_H + +#endif //!JABYENGINE_H \ No newline at end of file diff --git a/JabyEngine.code-workspace b/JabyEngine.code-workspace index a30729ae..aa92f003 100644 --- a/JabyEngine.code-workspace +++ b/JabyEngine.code-workspace @@ -38,9 +38,9 @@ } }, { - "label": "Blubb", + "label": "new make", "type": "shell", - "command": "wsl make all -f NewMakefile BUILD_PROFILE=release", + "command": "wsl make ${input:target} -f NewMakefile BUILD_PROFILE=${input:build_profile}", "options": { "cwd": "Code" }, @@ -71,7 +71,22 @@ "description": "Mode for FinalizeCD", "options": ["all", "calculate", "skip"], "default": "all" - } + }, + + { + "id": "target", + "type": "pickString", + "description": "Phony target", + "options": ["all", "clean"], + "default": "all" + }, + { + "id": "build_profile", + "type": "pickString", + "description": "Build type to use", + "options": ["debug", "release"], + "default": "release" + }, ], }, "settings": {