Skip to content

Commit

Permalink
Fix to CMAKE_CRT
Browse files Browse the repository at this point in the history
  • Loading branch information
lerno committed Jul 4, 2024
1 parent 47dc212 commit 0dd76e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions set-env.bat
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ goto :loop
:libcmt
set CRT=libcmt
set LLVM_CRT=MT
set CMAKE_CRT=MultiThreaded
set CMAKE_CRT="MultiThreaded<$<CONFIG:Debug>:Debug>"
shift
goto :loop

:msvcrt
set CRT=msvcrt
set LLVM_CRT=MD
set CMAKE_CRT=MultiThreadedDLL
set CMAKE_CRT="MultiThreaded<$<CONFIG:Debug>:Debug>DLL"
shift
goto :loop

Expand Down

0 comments on commit 0dd76e6

Please sign in to comment.