Skip to content
This repository was archived by the owner on May 7, 2020. It is now read-only.

Commit 3d448a9

Browse files
Use relative build directory
Output artifacts in .dist
1 parent 8da5309 commit 3d448a9

File tree

2 files changed

+41
-41
lines changed

2 files changed

+41
-41
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,3 +250,6 @@ paket-files/
250250
# JetBrains Rider
251251
.idea/
252252
*.sln.iml
253+
254+
# Dist directory
255+
.dist/

CMakeSettings.json

Lines changed: 38 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,40 @@
11
{
2-
"configurations": [
3-
{
4-
"name": "x86-Release",
5-
"generator": "Ninja",
6-
"configurationType": "Release",
7-
"inheritEnvironments": [
8-
"msvc_x86"
9-
],
10-
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\FF7_OpenGL\\build\\${name}",
11-
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\FF7_OpenGL\\install\\${name}",
12-
"cmakeCommandArgs": "",
13-
"buildCommandArgs": "-v",
14-
"ctestCommandArgs": ""
15-
},
16-
{
17-
"name": "x86-RelWithDebInfo",
18-
"generator": "Ninja",
19-
"configurationType": "RelWithDebInfo",
20-
"inheritEnvironments": [
21-
"msvc_x86"
22-
],
23-
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\FF7_OpenGL\\build\\${name}",
24-
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\FF7_OpenGL\\install\\${name}",
25-
"cmakeCommandArgs": "",
26-
"buildCommandArgs": "-v",
27-
"ctestCommandArgs": ""
28-
},
29-
{
30-
"name": "x86-Debug",
31-
"generator": "Ninja",
32-
"configurationType": "Debug",
33-
"inheritEnvironments": [
34-
"msvc_x86"
35-
],
36-
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\FF7_OpenGL\\build\\${name}",
37-
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\FF7_OpenGL\\install\\${name}",
38-
"cmakeCommandArgs": "",
39-
"buildCommandArgs": "-v",
40-
"ctestCommandArgs": ""
41-
}
42-
]
2+
"configurations": [
3+
{
4+
"name": "x86-Release",
5+
"generator": "Ninja",
6+
"configurationType": "Release",
7+
"inheritEnvironments": [ "msvc_x86" ],
8+
"buildRoot": "${projectDir}\\.dist\\build\\${name}",
9+
"installRoot": "${projectDir}\\.dist\\install\\${name}",
10+
"cmakeCommandArgs": "",
11+
"buildCommandArgs": "-v",
12+
"ctestCommandArgs": "",
13+
"variables": []
14+
},
15+
{
16+
"name": "x86-RelWithDebInfo",
17+
"generator": "Ninja",
18+
"configurationType": "RelWithDebInfo",
19+
"inheritEnvironments": [ "msvc_x86" ],
20+
"buildRoot": "${projectDir}\\.dist\\build\\${name}",
21+
"installRoot": "${projectDir}\\.dist\\install\\${name}",
22+
"cmakeCommandArgs": "",
23+
"buildCommandArgs": "-v",
24+
"ctestCommandArgs": "",
25+
"variables": []
26+
},
27+
{
28+
"name": "x86-Debug",
29+
"generator": "Ninja",
30+
"configurationType": "Debug",
31+
"inheritEnvironments": [ "msvc_x86" ],
32+
"buildRoot": "${projectDir}\\.dist\\build\\${name}",
33+
"installRoot": "${projectDir}\\.dist\\install\\${name}",
34+
"cmakeCommandArgs": "",
35+
"buildCommandArgs": "-v",
36+
"ctestCommandArgs": "",
37+
"variables": []
38+
}
39+
]
4340
}

0 commit comments

Comments
 (0)