ソースを参照

Fix VSCode (#1193)

* Executable is called game, not main

* Use make not mingw32-make on macOS
pull/1202/head
Stefan E. Mayer 5年前
committed by GitHub
コミット
c21e9a721b
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
2個のファイルの変更4行の追加1行の削除
  1. +1
    -1
      projects/VSCode/.vscode/launch.json
  2. +3
    -0
      projects/VSCode/Makefile

+ 1
- 1
projects/VSCode/.vscode/launch.json ファイルの表示

@ -8,7 +8,7 @@
"name": "Debug",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/main",
"program": "${workspaceFolder}/game",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",

+ 3
- 0
projects/VSCode/Makefile ファイルの表示

@ -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:

読み込み中…
キャンセル
保存