2009-06-28 21:50:27 +00:00
|
|
|
cmake_minimum_required(VERSION 2.6)
|
2015-01-27 15:44:46 +00:00
|
|
|
project(MBEDTLS C)
|
2009-06-28 21:50:27 +00:00
|
|
|
|
2014-04-24 00:40:25 +00:00
|
|
|
string(REGEX MATCH "Clang" CMAKE_COMPILER_IS_CLANG "${CMAKE_C_COMPILER_ID}")
|
2013-12-30 16:56:23 +00:00
|
|
|
|
2011-07-27 16:52:28 +00:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC)
|
2014-11-10 11:15:39 +00:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op")
|
2014-11-13 12:35:50 +00:00
|
|
|
set(CMAKE_C_FLAGS_RELEASE "-O2")
|
|
|
|
set(CMAKE_C_FLAGS_DEBUG "-O0 -g3")
|
|
|
|
set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
|
|
|
|
set(CMAKE_C_FLAGS_ASAN "-Werror -fsanitize=address -fno-common -O3")
|
|
|
|
set(CMAKE_C_FLAGS_ASANDBG "-Werror -fsanitize=address -fno-common -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls ")
|
2015-03-13 11:20:20 +00:00
|
|
|
set(CMAKE_C_FLAGS_CHECK "-Werror -Os")
|
2014-11-13 12:35:50 +00:00
|
|
|
set(CMAKE_C_FLAGS_CHECKFULL "${CMAKE_C_FLAGS_CHECK} -Wcast-qual")
|
2011-07-27 16:52:28 +00:00
|
|
|
endif(CMAKE_COMPILER_IS_GNUCC)
|
2013-11-28 16:20:04 +00:00
|
|
|
|
2013-12-30 16:56:23 +00:00
|
|
|
if(CMAKE_COMPILER_IS_CLANG)
|
2014-11-14 15:34:36 +00:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith")
|
2014-11-13 12:35:50 +00:00
|
|
|
set(CMAKE_C_FLAGS_RELEASE "-O2")
|
|
|
|
set(CMAKE_C_FLAGS_DEBUG "-O0 -g3")
|
|
|
|
set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
|
|
|
|
set(CMAKE_C_FLAGS_ASAN "-Werror -fsanitize=address -fno-common -fsanitize=undefined -fno-sanitize-recover -O3")
|
|
|
|
set(CMAKE_C_FLAGS_ASANDBG "-Werror -fsanitize=address -fno-common -fsanitize=undefined -fno-sanitize-recover -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls ")
|
|
|
|
set(CMAKE_C_FLAGS_MEMSAN "-Werror -fsanitize=memory -O3")
|
|
|
|
set(CMAKE_C_FLAGS_MEMSANDBG "-Werror -fsanitize=memory -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls -fsanitize-memory-track-origins=2")
|
2015-03-13 11:20:20 +00:00
|
|
|
set(CMAKE_C_FLAGS_CHECK "-Werror -Os")
|
2013-12-30 16:56:23 +00:00
|
|
|
endif(CMAKE_COMPILER_IS_CLANG)
|
|
|
|
|
2013-12-30 13:09:27 +00:00
|
|
|
set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE}
|
2014-11-13 12:35:50 +00:00
|
|
|
CACHE STRING "Choose the type of build: None Debug Release Coverage ASan ASanDbg MemSan MemSanDbg Check CheckFull"
|
2013-12-30 13:09:27 +00:00
|
|
|
FORCE)
|
2014-01-31 12:16:30 +00:00
|
|
|
|
2009-07-11 19:54:40 +00:00
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Coverage")
|
2011-07-27 16:52:28 +00:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC)
|
2014-01-31 12:16:30 +00:00
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "--coverage")
|
2011-07-27 16:52:28 +00:00
|
|
|
endif(CMAKE_COMPILER_IS_GNUCC)
|
2014-01-31 12:16:30 +00:00
|
|
|
if(CMAKE_COMPILER_IS_CLANG)
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "--coverage")
|
|
|
|
endif(CMAKE_COMPILER_IS_CLANG)
|
2009-07-11 19:54:40 +00:00
|
|
|
endif(CMAKE_BUILD_TYPE STREQUAL "Coverage")
|
2009-06-28 21:50:27 +00:00
|
|
|
|
2015-01-23 13:33:31 +00:00
|
|
|
option(USE_PKCS11_HELPER_LIBRARY "Build mbed TLS with the pkcs11-helper library." OFF)
|
2011-01-18 16:18:38 +00:00
|
|
|
|
2015-01-23 13:33:31 +00:00
|
|
|
option(ENABLE_ZLIB_SUPPORT "Build mbed TLS with zlib library." OFF)
|
|
|
|
option(ENABLE_PROGRAMS "Build mbed TLS programs." ON)
|
|
|
|
option(ENABLE_TESTING "Build mbed TLS tests." ON)
|
2014-04-30 14:31:54 +00:00
|
|
|
|
|
|
|
if(ENABLE_TESTING)
|
|
|
|
enable_testing()
|
|
|
|
endif()
|
2012-07-03 15:10:33 +00:00
|
|
|
|
2011-07-13 11:45:58 +00:00
|
|
|
if(LIB_INSTALL_DIR)
|
|
|
|
else()
|
2011-12-11 11:28:52 +00:00
|
|
|
set(LIB_INSTALL_DIR lib)
|
2011-07-13 11:45:58 +00:00
|
|
|
endif()
|
|
|
|
|
2009-06-28 21:50:27 +00:00
|
|
|
include_directories(include/)
|
|
|
|
|
2012-07-03 15:10:33 +00:00
|
|
|
if(ENABLE_ZLIB_SUPPORT)
|
|
|
|
find_package(ZLIB)
|
|
|
|
|
|
|
|
if(ZLIB_FOUND)
|
2014-03-06 14:46:06 +00:00
|
|
|
include_directories(${ZLIB_INCLUDE_DIR})
|
2012-07-03 15:10:33 +00:00
|
|
|
endif(ZLIB_FOUND)
|
|
|
|
endif(ENABLE_ZLIB_SUPPORT)
|
|
|
|
|
2009-06-28 21:50:27 +00:00
|
|
|
add_subdirectory(library)
|
2011-01-05 15:07:54 +00:00
|
|
|
add_subdirectory(include)
|
2011-07-27 16:52:28 +00:00
|
|
|
|
2014-04-30 14:31:54 +00:00
|
|
|
if(ENABLE_TESTING)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCC)
|
|
|
|
add_subdirectory(tests)
|
|
|
|
endif(CMAKE_COMPILER_IS_GNUCC)
|
|
|
|
if(CMAKE_COMPILER_IS_CLANG)
|
|
|
|
add_subdirectory(tests)
|
|
|
|
endif(CMAKE_COMPILER_IS_CLANG)
|
|
|
|
endif()
|
2011-07-27 16:52:28 +00:00
|
|
|
|
2014-03-26 12:27:51 +00:00
|
|
|
if(ENABLE_PROGRAMS)
|
|
|
|
add_subdirectory(programs)
|
|
|
|
endif()
|
2011-01-05 15:30:32 +00:00
|
|
|
|
|
|
|
ADD_CUSTOM_TARGET(apidoc
|
2015-01-22 17:01:27 +00:00
|
|
|
COMMAND doxygen doxygen/mbedtls.doxyfile
|
2011-01-05 15:30:32 +00:00
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
2013-09-07 14:52:42 +00:00
|
|
|
|
2014-04-30 14:31:54 +00:00
|
|
|
if(ENABLE_TESTING)
|
|
|
|
ADD_CUSTOM_TARGET(test-ref-config
|
2014-01-31 12:41:07 +00:00
|
|
|
COMMAND tests/scripts/test-ref-configs.pl
|
|
|
|
)
|
|
|
|
|
2014-04-30 14:31:54 +00:00
|
|
|
ADD_CUSTOM_TARGET(covtest
|
2014-02-24 10:57:36 +00:00
|
|
|
COMMAND make test
|
|
|
|
COMMAND programs/test/selftest
|
|
|
|
COMMAND cd tests && ./compat.sh
|
|
|
|
COMMAND cd tests && ./ssl-opt.sh
|
|
|
|
)
|
|
|
|
|
2014-04-30 14:31:54 +00:00
|
|
|
ADD_CUSTOM_TARGET(lcov
|
2014-02-24 11:39:18 +00:00
|
|
|
COMMAND rm -rf Coverage
|
2015-01-27 15:44:46 +00:00
|
|
|
COMMAND lcov --capture --initial --directory library/CMakeFiles/mbedtls.dir -o files.info
|
|
|
|
COMMAND lcov --capture --directory library/CMakeFiles/mbedtls.dir -o tests.info
|
2014-06-16 14:24:24 +00:00
|
|
|
COMMAND lcov --add-tracefile files.info --add-tracefile tests.info -o all.info
|
|
|
|
COMMAND lcov --remove all.info -o final.info '*.h'
|
2014-02-24 11:39:18 +00:00
|
|
|
COMMAND gendesc tests/Descriptions.txt -o descriptions
|
2015-01-23 17:40:33 +00:00
|
|
|
COMMAND genhtml --title "mbed TLS" --description-file descriptions --keep-descriptions --legend --no-branch-coverage -o Coverage final.info
|
2014-06-16 14:24:24 +00:00
|
|
|
COMMAND rm -f files.info tests.info all.info final.info descriptions
|
2014-01-31 15:19:43 +00:00
|
|
|
)
|
|
|
|
|
2014-04-30 14:31:54 +00:00
|
|
|
ADD_CUSTOM_TARGET(memcheck
|
2015-01-07 13:55:38 +00:00
|
|
|
COMMAND sed -i.bak s+/usr/bin/valgrind+`which valgrind`+ DartConfiguration.tcl
|
2013-09-13 11:43:43 +00:00
|
|
|
COMMAND ctest -O memcheck.log -D ExperimentalMemCheck
|
2013-09-07 14:52:42 +00:00
|
|
|
COMMAND tail -n1 memcheck.log | grep 'Memory checking results:' > /dev/null
|
|
|
|
COMMAND rm -f memcheck.log
|
2014-12-15 09:41:53 +00:00
|
|
|
COMMAND mv DartConfiguration.tcl.bak DartConfiguration.tcl
|
2013-09-07 14:52:42 +00:00
|
|
|
)
|
2014-04-30 14:31:54 +00:00
|
|
|
endif()
|