소스 검색

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
No known key found for this signature in database 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:

불러오는 중...
취소
저장