mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-06 14:23:12 +00:00
Fix VSCode (#1193)
* Executable is called game, not main * Use make not mingw32-make on macOS
This commit is contained in:
parent
b4af1b2cc0
commit
c21e9a721b
2
projects/VSCode/.vscode/launch.json
vendored
2
projects/VSCode/.vscode/launch.json
vendored
@ -8,7 +8,7 @@
|
|||||||
"name": "Debug",
|
"name": "Debug",
|
||||||
"type": "cppdbg",
|
"type": "cppdbg",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/main",
|
"program": "${workspaceFolder}/game",
|
||||||
"args": [],
|
"args": [],
|
||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"cwd": "${workspaceFolder}",
|
"cwd": "${workspaceFolder}",
|
||||||
|
|||||||
@ -180,6 +180,9 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
|
|||||||
ifeq ($(PLATFORM_OS),LINUX)
|
ifeq ($(PLATFORM_OS),LINUX)
|
||||||
MAKE = make
|
MAKE = make
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(PLATFORM_OS),OSX)
|
||||||
|
MAKE = make
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Define compiler flags:
|
# Define compiler flags:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user