Skip to content

Instantly share code, notes, and snippets.

@Reputeless
Last active October 20, 2020 16:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Reputeless/9cad2d052c6602d442d37d88c820a13a to your computer and use it in GitHub Desktop.
Save Reputeless/9cad2d052c6602d442d37d88c820a13a to your computer and use it in GitHub Desktop.
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"${SIV3D_0_4_2}/include",
"${SIV3D_0_4_2}/include/ThirdParty"
],
"defines": [
"${default}"
],
"windowsSdkVersion": "10.0.18362.0",
"compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.24.28314/bin/Hostx64/x64/cl.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "msvc-x64"
}
],
"version": 4
}
{
"version": "2.0.0",
"tasks": [
{
"label": "Build-Debug",
"type": "process",
"command": "vsdevcmd-debug.bat",
"args": ["${workspaceFolderBasename}"],
"group": "build",
"presentation": {
"reveal": "always"
},
"problemMatcher": "$msCompile"
},
{
"label": "Build-Release",
"type": "process",
"command": "vsdevcmd-release.bat",
"args": ["${workspaceFolderBasename}"],
"group": "build",
"presentation": {
"reveal": "always"
},
"problemMatcher": "$msCompile"
}
]
}
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
msbuild ".\\"%1".vcxproj"
cd App
".\\"%1"(debug).exe"
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
msbuild ".\\"%1".vcxproj" /p:configuration=release
cd App
".\\"%1".exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment