Skip to content

Commit

Permalink
introduce build configurations for Visual Studio
Browse files Browse the repository at this point in the history
  • Loading branch information
grayed committed Mar 23, 2022
1 parent e005b73 commit 7e0cb25
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions CppProperties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"configurations": [
{
"inheritEnvironments": [
"msvc_x64"
],
"name": "x64-Debug",
"includePath": [
"${env.INCLUDE}",
"${workspaceRoot}\\**"
],
"defines": [
"WIN32",
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"intelliSenseMode": "windows-msvc-x64"
},
{
"inheritEnvironments": [
"msvc_x86"
],
"name": "x86-Debug",
"includePath": [
"${env.INCLUDE}",
"${workspaceRoot}\\**"
],
"defines": [
"WIN32",
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"intelliSenseMode": "windows-msvc-x86"
}
]
}

0 comments on commit 7e0cb25

Please sign in to comment.