mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2026-01-07 09:10:42 +01:00
Condition was checking for Visual Studio, not use of WIN32 Signed-off-by: Simon Butcher <simon.butcher@arm.com>
23 lines
566 B
CMake
23 lines
566 B
CMake
set(libs
|
|
mbedtls
|
|
)
|
|
|
|
if(WIN32)
|
|
set(libs ${libs} bcrypt)
|
|
endif(WIN32)
|
|
|
|
set(executables
|
|
gen_entropy
|
|
gen_random_ctr_drbg
|
|
)
|
|
|
|
foreach(exe IN LISTS executables)
|
|
add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:mbedtls_test>)
|
|
target_link_libraries(${exe} ${mbedcrypto_target})
|
|
target_include_directories(${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../tests/include)
|
|
endforeach()
|
|
|
|
install(TARGETS ${executables}
|
|
DESTINATION "bin"
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|