Is it possible to pass argument into the g++ command to look for .cpp files in some directory or I have to it manually (no workaround) this way:
"args": [
"${file}",
"${workspaceRoot}\\src\\graphics\\window.cpp",
"-o",
"${workspaceRoot}\\${fileBasenameNoExtension}.exe",
"-lglfw3",
"-lgdi32",
"-lopengl32"
]
?
Comments
Post a Comment