浏览代码

Allow to run any file (#2069)

pull/2073/head
Jarosław Jaros 4 年前
committed by GitHub
父节点
当前提交
d8e0b2e27c
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 6 次插入2 次删除
  1. +6
    -2
      projects/VSCode/.vscode/tasks.json

+ 6
- 2
projects/VSCode/.vscode/tasks.json 查看文件

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

正在加载...
取消
保存