Skip to content

Commit 9f45aaa

Browse files
add VS project settings
1 parent d81d7cd commit 9f45aaa

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.vs/
33
cmake-build-debug/
44
out/
5-
CMakeSettings.json
65
*.exe.stackdump
76
*.exe
87

CMakeLists.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,6 @@ link_directories(
6969
"$ENV{DXSDK_DIR}/Utilities/bin/x86"
7070
)
7171

72-
if (CYGWIN)
73-
message("Build toolchain: Cygwin")
74-
# TODO: add folder with dx 10 libs
75-
# TODO: add folder with DxErr library
76-
endif ()
77-
7872

7973
if (RENDER_SYSTEM_DIRECTX_12 STREQUAL "ON")
8074
set(RENDER_SYSTEM_SOURCES ${RENDER_SYSTEM_SOURCES}

CMakeSettings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "x86-Debug",
5+
"generator": "Ninja",
6+
"configurationType": "Debug",
7+
"buildRoot": "${projectDir}\\out\\build\\${name}",
8+
"installRoot": "${projectDir}\\out\\install\\${name}",
9+
"cmakeCommandArgs": "-DRENDER_SYSTEM_TESTS=ON",
10+
"buildCommandArgs": "",
11+
"ctestCommandArgs": "",
12+
"inheritEnvironments": [ "msvc_x86" ],
13+
"variables": []
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)