Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e2c795d

Browse files
Merge pull request BehaviorTree#70 from Masadow/patch-3
Added 32bits compilation configuration for msvc
2 parents 341d867 + 1ad6af2 commit e2c795d

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

CMakeSettings.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "x64-Release",
5+
"generator": "Ninja",
6+
"configurationType": "Release",
7+
"inheritEnvironments": [
8+
"msvc_x86_x64"
9+
],
10+
"buildRoot": "${workspaceRoot}\\build\\${name}",
11+
"installRoot": "${workspaceRoot}\\install\\${name}",
12+
"cmakeCommandArgs": "",
13+
"buildCommandArgs": "-v",
14+
"ctestCommandArgs": ""
15+
},
16+
{
17+
"name": "x64-Debug",
18+
"generator": "Ninja",
19+
"configurationType": "Debug",
20+
"inheritEnvironments": [
21+
"msvc_x86_x64"
22+
],
23+
"buildRoot": "${workspaceRoot}\\build\\${name}",
24+
"installRoot": "${workspaceRoot}\\install\\${name}",
25+
"cmakeCommandArgs": "",
26+
"buildCommandArgs": "-v",
27+
"ctestCommandArgs": ""
28+
}
29+
]
30+
}

0 commit comments

Comments
 (0)