Common Issues
cannot open output file
cannot open output file @\build\GENERIC_SDL_GL_win64\bin\build\bin\main.exe: No such file or directory
This occurs when custom build settings are in place, most probably because the project is outdated and has not been updated to the new build system, to fix this simply edit project.json
and remove the following keys:
{
"gnucc": {
"input": [
"src/**/*.cpp"
],
"objOut": "build/obj",
"output": "build/bin/main"
},
"release": "release",
"assets": "assets"
}
All the values above are autogenerated by lvt
.