Skip to content

Commit

Permalink
Link against static runtime libraries OFF as default
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasmark79 committed Jan 23, 2025
1 parent 8ea94cd commit 46ee125
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if(NOT DEFINED BUILD_SHARED_LIBS)
endif()

if(NOT DEFINED USE_STATIC_RUNTIME)
option(USE_STATIC_RUNTIME "Link against static runtime libraries" ON)
option(USE_STATIC_RUNTIME "Link against static runtime libraries" OFF)
endif()

if(USE_STATIC_RUNTIME)
Expand Down
2 changes: 1 addition & 1 deletion Standalone/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if(NOT DEFINED BUILD_SHARED_LIBS)
endif()

if(NOT DEFINED USE_STATIC_RUNTIME)
option(USE_STATIC_RUNTIME "Link against static runtime libraries" ON)
option(USE_STATIC_RUNTIME "Link against static runtime libraries" OFF)
endif()

if(USE_STATIC_RUNTIME)
Expand Down

0 comments on commit 46ee125

Please sign in to comment.