summaryrefslogtreecommitdiffhomepage
path: root/projects/VSCode
diff options
context:
space:
mode:
authorRay <[email protected]>2021-11-02 18:40:45 +0100
committerRay <[email protected]>2021-11-02 18:40:45 +0100
commit5e3db0aa83ac337ac53b9ebd1561472adfbabb41 (patch)
tree0ccd6eb5d9c94e13a45482f530a923e940b32ad9 /projects/VSCode
parentfadef24b626fc5811d1d4015fed90fdba315f977 (diff)
downloadraylib-5e3db0aa83ac337ac53b9ebd1561472adfbabb41.tar.gz
raylib-5e3db0aa83ac337ac53b9ebd1561472adfbabb41.zip
Updated some scripts paths
NOTE: New raylib release installer uses `w64devkit`, smaller and more updated than regular `mingw64-w64` default project. Paths are updated properly.
Diffstat (limited to 'projects/VSCode')
-rw-r--r--projects/VSCode/.vscode/c_cpp_properties.json2
-rw-r--r--projects/VSCode/.vscode/launch.json4
-rw-r--r--projects/VSCode/.vscode/tasks.json4
-rw-r--r--projects/VSCode/Makefile4
4 files changed, 7 insertions, 7 deletions
diff --git a/projects/VSCode/.vscode/c_cpp_properties.json b/projects/VSCode/.vscode/c_cpp_properties.json
index 10881ee8..c4096b3d 100644
--- a/projects/VSCode/.vscode/c_cpp_properties.json
+++ b/projects/VSCode/.vscode/c_cpp_properties.json
@@ -13,7 +13,7 @@
"GRAPHICS_API_OPENGL_33",
"PLATFORM_DESKTOP"
],
- "compilerPath": "C:/raylib/mingw/bin/gcc.exe",
+ "compilerPath": "C:/raylib/w64devkit/bin/gcc.exe",
"cStandard": "c99",
"cppStandard": "c++14",
"intelliSenseMode": "gcc-x64"
diff --git a/projects/VSCode/.vscode/launch.json b/projects/VSCode/.vscode/launch.json
index afb54b7f..30d8990c 100644
--- a/projects/VSCode/.vscode/launch.json
+++ b/projects/VSCode/.vscode/launch.json
@@ -23,7 +23,7 @@
}
],
"windows": {
- "miDebuggerPath": "C:/raylib/mingw/bin/gdb.exe",
+ "miDebuggerPath": "C:/raylib/w64devkit/bin/gdb.exe",
},
"osx": {
"MIMode": "lldb"
@@ -46,7 +46,7 @@
"MIMode": "gdb",
"windows": {
"program": "${workspaceFolder}/${fileBasenameNoExtension}.exe",
- "miDebuggerPath": "C:/raylib/mingw/bin/gdb.exe"
+ "miDebuggerPath": "C:/raylib/w64devkit/bin/gdb.exe"
},
"osx": {
"MIMode": "lldb"
diff --git a/projects/VSCode/.vscode/tasks.json b/projects/VSCode/.vscode/tasks.json
index a610a248..6152d301 100644
--- a/projects/VSCode/.vscode/tasks.json
+++ b/projects/VSCode/.vscode/tasks.json
@@ -14,7 +14,7 @@
"OBJS=${fileBasenameNoExtension}.c"
],
"windows": {
- "command": "C:/raylib/mingw/bin/mingw32-make.exe",
+ "command": "mingw32-make.exe",
"args": [
"RAYLIB_PATH=C:/raylib/raylib",
"PROJECT_NAME=${fileBasenameNoExtension}",
@@ -48,7 +48,7 @@
"OBJS=${fileBasenameNoExtension}.c"
],
"windows": {
- "command": "C:/raylib/mingw/bin/mingw32-make.exe",
+ "command": "mingw32-make.exe",
"args": [
"RAYLIB_PATH=C:/raylib/raylib",
"PROJECT_NAME=${fileBasenameNoExtension}",
diff --git a/projects/VSCode/Makefile b/projects/VSCode/Makefile
index 7fe11f1d..d89a80ff 100644
--- a/projects/VSCode/Makefile
+++ b/projects/VSCode/Makefile
@@ -25,11 +25,11 @@
# Define required raylib variables
PROJECT_NAME ?= game
-RAYLIB_VERSION ?= 3.8.0
+RAYLIB_VERSION ?= 4.0.0
RAYLIB_PATH ?= ..\..
# Define compiler path on Windows
-COMPILER_PATH ?= C:/raylib/mingw/bin
+COMPILER_PATH ?= C:/raylib/w64devkit/bin
# Define default options
# One of PLATFORM_DESKTOP, PLATFORM_RPI, PLATFORM_ANDROID, PLATFORM_WEB