Kaynağa Gözat
Fix VSCode (#1193)
* Executable is called game, not main
* Use make not mingw32-make on macOS
pull/1202/head
Stefan E. Mayer
5 yıl önce
işlemeyi yapan:
GitHub
ebeveyn
işleme
c21e9a721b
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: 4AEE18F83AFDEB23
2 değiştirilmiş dosya ile
4 ekleme ve
1 silme
-
projects/VSCode/.vscode/launch.json
-
projects/VSCode/Makefile
|
|
@ -8,7 +8,7 @@ |
|
|
|
"name": "Debug", |
|
|
|
"type": "cppdbg", |
|
|
|
"request": "launch", |
|
|
|
"program": "${workspaceFolder}/main", |
|
|
|
"program": "${workspaceFolder}/game", |
|
|
|
"args": [], |
|
|
|
"stopAtEntry": false, |
|
|
|
"cwd": "${workspaceFolder}", |
|
|
|
|
|
@ -180,6 +180,9 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) |
|
|
|
ifeq ($(PLATFORM_OS),LINUX) |
|
|
|
MAKE = make |
|
|
|
endif |
|
|
|
ifeq ($(PLATFORM_OS),OSX) |
|
|
|
MAKE = make |
|
|
|
endif |
|
|
|
endif |
|
|
|
|
|
|
|
# Define compiler flags:
|
|
|
|