Getting the project to run

I had some problems making this project run. Worked wonders for the previous sections. After looking into the code I found some reference missmatch in this project vs the previous ones.

So in order to make this work you can either use the base added previously OR if you like to fix things. Copy the path and then change the following

File Makefile
Row 33 - Change to:
COMPILER_PATH ?= C:/raylib/w64devkit/bin

.vscode/c_cpp_properties.json
Row 16 - Change to:
“compilerPath”: “C:/raylib/w64devkit/bin/gcc.exe”,

.vscode/launch.json
Row 26 - Change to:
“miDebuggerPath”: “C:/raylib/w64devkit/bin/gdb.exe”,
Row 49 - Change to:
“miDebuggerPath”: “C:/raylib/w64devkit/bin/gdb.exe”

.vscode/tasks.json
Row 15 - Changet to:
“command”: “C:/raylib/w64devkit/bin/mingw32-make.exe”,
Row 46 - Change to:
“command”: “C:/raylib/w64devkit/bin/mingw32-make.exe”,

I hope that helps others who get stuck

3 Likes

For me the issue was simply that I needed to take the project we already had worked on from the previous video and copy the non template files into our template that we made at the beginning of the course.

3 Likes

Privacy & Terms