Skip to content

Commit c686d7e

Browse files
committed
Code review
1 parent bb151db commit c686d7e

3 files changed

Lines changed: 8 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ jobs:
7171
build_type: x86-Release-Clang
7272
arch: amd64_x86
7373
- toolver: '14'
74-
build_type: x64-Debug-VS
74+
build_type: x64-VS
7575
arch: amd64
7676
- toolver: '14'
77-
build_type: x86-Debug-VS
77+
build_type: x86-VS
7878
arch: amd64_x86
7979

8080
steps:

CMakeLists.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -442,12 +442,11 @@ if(directxmath_FOUND)
442442
endforeach()
443443
endif()
444444

445-
if(TOOL_EXES)
446-
message(STATUS "Building tools: ${TOOL_EXES}")
447-
endif()
448-
449445
if (BUILD_TOOLS AND (CMAKE_GENERATOR MATCHES "Visual Studio"))
446+
message(STATUS "Building tools: MakeSpriteFont;${TOOL_EXES}")
450447
add_subdirectory(MakeSpriteFont)
448+
elseif(TOOL_EXES)
449+
message(STATUS "Building tools: ${TOOL_EXES}")
451450
endif()
452451

453452
# Model uses dynamic_cast, so we need /GR (Enable RTTI)

CMakePresets.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -258,11 +258,6 @@
258258
{ "name": "x86-Debug" , "description": "MSVC for x86 (Debug) for Windows 8", "inherits": [ "base", "x86", "Debug", "MSVC" ] },
259259
{ "name": "x86-Release" , "description": "MSVC for x86 (Release) for Windows 8", "inherits": [ "base", "x86", "Release", "MSVC" ] },
260260

261-
{ "name": "x64-Debug-VS" , "description": "MSVC for x64 (Debug) w/ MakeSpriteFont", "inherits": [ "vsbase", "x64", "Debug", "MSVC" ] },
262-
{ "name": "x64-Release-VS" , "description": "MSVC for x64 (Release) w/ MakeSpriteFont", "inherits": [ "vsbase", "x64", "Release", "MSVC" ] },
263-
{ "name": "x86-Debug-VS" , "description": "MSVC for x86 (Debug) w/ MakeSpriteFont", "inherits": [ "vsbase", "x86", "Debug", "MSVC" ] },
264-
{ "name": "x86-Release-VS" , "description": "MSVC for x86 (Release) w/ MakeSpriteFont", "inherits": [ "vsbase", "x86", "Release", "MSVC" ] },
265-
266261
{ "name": "x64-Debug-Win10" , "description": "MSVC for x64 (Debug) for Windows 10", "inherits": [ "base", "x64", "Debug", "MSVC", "Win10" ] },
267262
{ "name": "x64-Release-Win10" , "description": "MSVC for x64 (Release) for Windows 10", "inherits": [ "base", "x64", "Release", "MSVC", "Win10" ] },
268263
{ "name": "x86-Debug-Win10" , "description": "MSVC for x86 (Debug) for Windows 10", "inherits": [ "base", "x86", "Debug", "MSVC", "Win10" ] },
@@ -273,6 +268,9 @@
273268
{ "name": "arm64ec-Debug" , "description": "MSVC for ARM64EC (Debug) for Windows 10", "inherits": [ "base", "ARM64EC", "Debug", "MSVC", "Win10" ] },
274269
{ "name": "arm64ec-Release" , "description": "MSVC for ARM64EC (Release) for Windows 10", "inherits": [ "base", "ARM64EC", "Release", "MSVC", "Win10" ] },
275270

271+
{ "name": "x64-VS" , "description": "MSVC for x64 w/ Visual Studio generator", "inherits": [ "vsbase", "x64", "MSVC" ] },
272+
{ "name": "x86-VS" , "description": "MSVC for x86 w/ Visual Studio generator", "inherits": [ "vsbase", "x86", "MSVC" ] },
273+
276274
{ "name": "x64-Debug-UWP" , "description": "MSVC for x64 (Debug) for UWP", "inherits": [ "base", "x64", "Debug", "MSVC", "UWP" ] },
277275
{ "name": "x64-Release-UWP" , "description": "MSVC for x64 (Release) for UWP", "inherits": [ "base", "x64", "Release", "MSVC", "UWP" ] },
278276
{ "name": "x86-Debug-UWP" , "description": "MSVC for x86 (Debug) for UWP", "inherits": [ "base", "x86", "Debug", "MSVC", "UWP" ] },

0 commit comments

Comments
 (0)