mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-25 17:40:58 +00:00
Rename in cmake help strings
This commit is contained in:
parent
c26a092b50
commit
cfa9a45dd6
|
@ -39,11 +39,11 @@ if(CMAKE_BUILD_TYPE STREQUAL "Coverage")
|
||||||
endif(CMAKE_COMPILER_IS_CLANG)
|
endif(CMAKE_COMPILER_IS_CLANG)
|
||||||
endif(CMAKE_BUILD_TYPE STREQUAL "Coverage")
|
endif(CMAKE_BUILD_TYPE STREQUAL "Coverage")
|
||||||
|
|
||||||
option(USE_PKCS11_HELPER_LIBRARY "Build PolarSSL with the pkcs11-helper library." OFF)
|
option(USE_PKCS11_HELPER_LIBRARY "Build mbed TLS with the pkcs11-helper library." OFF)
|
||||||
|
|
||||||
option(ENABLE_ZLIB_SUPPORT "Build PolarSSL with zlib library." OFF)
|
option(ENABLE_ZLIB_SUPPORT "Build mbed TLS with zlib library." OFF)
|
||||||
option(ENABLE_PROGRAMS "Build PolarSSL programs." ON)
|
option(ENABLE_PROGRAMS "Build mbed TLS programs." ON)
|
||||||
option(ENABLE_TESTING "Build PolarSSL tests." ON)
|
option(ENABLE_TESTING "Build mbed TLS tests." ON)
|
||||||
|
|
||||||
if(ENABLE_TESTING)
|
if(ENABLE_TESTING)
|
||||||
enable_testing()
|
enable_testing()
|
||||||
|
@ -103,7 +103,7 @@ if(ENABLE_TESTING)
|
||||||
COMMAND lcov --add-tracefile files.info --add-tracefile tests.info -o all.info
|
COMMAND lcov --add-tracefile files.info --add-tracefile tests.info -o all.info
|
||||||
COMMAND lcov --remove all.info -o final.info '*.h'
|
COMMAND lcov --remove all.info -o final.info '*.h'
|
||||||
COMMAND gendesc tests/Descriptions.txt -o descriptions
|
COMMAND gendesc tests/Descriptions.txt -o descriptions
|
||||||
COMMAND genhtml --title PolarSSL --description-file descriptions --keep-descriptions --legend --no-branch-coverage -o Coverage final.info
|
COMMAND genhtml --title mbed TLS --description-file descriptions --keep-descriptions --legend --no-branch-coverage -o Coverage final.info
|
||||||
COMMAND rm -f files.info tests.info all.info final.info descriptions
|
COMMAND rm -f files.info tests.info all.info final.info descriptions
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
option(INSTALL_POLARSSL_HEADERS "Install PolarSSL headers." ON)
|
option(INSTALL_POLARSSL_HEADERS "Install mbed TLS headers." ON)
|
||||||
|
|
||||||
if(INSTALL_POLARSSL_HEADERS)
|
if(INSTALL_POLARSSL_HEADERS)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
option(USE_STATIC_POLARSSL_LIBRARY "Build PolarSSL static library." ON)
|
option(USE_STATIC_POLARSSL_LIBRARY "Build mbed TLS static library." ON)
|
||||||
option(USE_SHARED_POLARSSL_LIBRARY "Build PolarSSL shared library." OFF)
|
option(USE_SHARED_POLARSSL_LIBRARY "Build mbed TLS shared library." OFF)
|
||||||
option(LINK_WITH_PTHREAD "Explicitly link PolarSSL library to pthread." OFF)
|
option(LINK_WITH_PTHREAD "Explicitly link mbed TLS library to pthread." OFF)
|
||||||
|
|
||||||
set(src
|
set(src
|
||||||
aes.c
|
aes.c
|
||||||
|
|
Loading…
Reference in a new issue