cmake - fix uninitialized vars

This commit is contained in:
Andrej730
2025-12-05 14:29:48 +05:00
parent 225039aa96
commit c2a03eb658
3 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ if(NOT IS_ABSOLUTE ${INCLUDEDIR})
endif()
message(STATUS "INCLUDEDIR: ${INCLUDEDIR}")
if(WIN32 AND ("$ENV{CONDA_BUILD}" STREQUAL ""))
if(WIN32 AND NOT DEFINED ENV{CONDA_BUILD})
set(Boost_USE_STATIC_LIBS ON)
set(Boost_USE_MULTITHREADED ON)
if (USE_STATIC_MSVC_RUNTIME)