mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-19 09:58:08 -05:00
This pull request brings us up to fmt 11.1.4 and enables `FMT_PEDANTIC`. `FMT_PEDANTIC` turns on `/W3`, which is required by our local feudal lords who will automatically file bugs on us if we don't build with enough warnings enabled.
14 lines
522 B
Diff
14 lines
522 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 88c12148..967b53dd 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -260,7 +260,7 @@ if (FMT_MASTER_PROJECT AND CMAKE_GENERATOR MATCHES "Visual Studio")
|
|
join(netfxpath
|
|
"C:\\Program Files\\Reference Assemblies\\Microsoft\\Framework\\"
|
|
".NETFramework\\v4.0")
|
|
- file(WRITE run-msbuild.bat "
|
|
+ file(WRITE "${CMAKE_BINARY_DIR}/run-msbuild.bat" "
|
|
${MSBUILD_SETUP}
|
|
${CMAKE_MAKE_PROGRAM} -p:FrameworkPathOverride=\"${netfxpath}\" %*")
|
|
endif ()
|