raylib project template
- vscode & gcc & cmake & vcpkg
- vcpkg install raylib:x64-windows
- install vscode CMake extension
- according to /.vscode txts to configure .json
- according to CMakelists_sample.txt to create CMakelists.txt
- manual build once
>> cd build
>> cmake ..
vscode: ctrl + shift + p, cmake configure
- build every times
vscode: ctrl + shift + p, cmake build
- run
vscode: F5
- Q:路径有非法字符
- A:cmake --build d:/cray/build 应改为 cmake --build d:\cray\build