Allow to run any file

This commit is contained in:
YarekY 2021-10-18 20:39:55 +02:00
parent 6ac3043e88
commit f6d6677dbe

View File

@ -9,7 +9,9 @@
"command": "make", "command": "make",
"args": [ "args": [
"PLATFORM=PLATFORM_DESKTOP", "PLATFORM=PLATFORM_DESKTOP",
"BUILD_MODE=DEBUG" "BUILD_MODE=DEBUG",
"PROJECT_NAME=${fileBasenameNoExtension}",
"OBJS=${fileBasenameNoExtension}.c"
], ],
"windows": { "windows": {
"command": "C:/raylib/mingw/bin/mingw32-make.exe", "command": "C:/raylib/mingw/bin/mingw32-make.exe",
@ -42,6 +44,8 @@
"command": "make", "command": "make",
"args": [ "args": [
"PLATFORM=PLATFORM_DESKTOP", "PLATFORM=PLATFORM_DESKTOP",
"PROJECT_NAME=${fileBasenameNoExtension}",
"OBJS=${fileBasenameNoExtension}.c"
], ],
"windows": { "windows": {
"command": "C:/raylib/mingw/bin/mingw32-make.exe", "command": "C:/raylib/mingw/bin/mingw32-make.exe",
@ -64,4 +68,4 @@
] ]
} }
] ]
} }