Lightnet / raylibvscodeexample

Simple project raylib vscode build.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

raylabcodeexample

Information:

Simple fixed and base on default install for raylab dir.

Working Version:

  • raylib 2.5
  • VSCode 1.34.0

Fixed base on the links ref:

Notes changes:

  • mingw32 > mingw for folder.

task.json

"command": "C:/raylib/mingw32/bin/mingw32-make.exe",

"command": "C:/raylib/mingw/bin/mingw32-make.exe",

lanuch.json

"program": "${workspaceFolder}/${fileBasenameNoExtension}.exe",

"program": "${workspaceFolder}/game.exe",

Makefile

ifeq ($(OS),Windows_NT)
	PLATFORM_OS=WINDOWS
	export PATH := C:/raylib/mingw/bin:$(PATH)
else

This is added for mingw32-make to build game.exe

About

Simple project raylib vscode build.

License:MIT License


Languages

Language:Makefile 83.8%Language:C 16.2%