mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-05-11 14:38:17 +02:00
Correct check for WIN32 in cmake files for programs
Condition was checking for Visual Studio, not use of WIN32 Signed-off-by: Simon Butcher <simon.butcher@arm.com>
This commit is contained in:
committed by
Minos Galanakis
parent
34b8d83a22
commit
33425de128
@@ -5,9 +5,9 @@ set(libs
|
||||
${mbedtls_target}
|
||||
)
|
||||
|
||||
if(MSVC)
|
||||
if(WIN32)
|
||||
set(libs ${libs} bcrypt)
|
||||
endif()
|
||||
endif(WIN32)
|
||||
|
||||
set(executables
|
||||
dtls_client
|
||||
|
||||
Reference in New Issue
Block a user