mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-05-11 06:28: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
@@ -1,6 +1,10 @@
|
||||
if(MSVC)
|
||||
set(libs
|
||||
mbedtls
|
||||
)
|
||||
|
||||
if(WIN32)
|
||||
set(libs ${libs} bcrypt)
|
||||
endif()
|
||||
endif(WIN32)
|
||||
|
||||
set(executables_mbedtls
|
||||
dh_client
|
||||
|
||||
Reference in New Issue
Block a user