forked from lxyppc/lxyppc-serial
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d76104
commit d0609b7
Showing
389 changed files
with
88,194 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
cmake_minimum_required(VERSION 2.6) | ||
project(POLARSSL C) | ||
|
||
enable_testing() | ||
|
||
if(CMAKE_COMPILER_IS_GNUCC) | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -Wall -Wextra -W -Wdeclaration-after-statement") | ||
set(CMAKE_C_FLAGS_DEBUG "-g3 -O0") | ||
set(CMAKE_C_FLAGS_COVERAGE "-g3 -O0 -fprofile-arcs -ftest-coverage -lgcov") | ||
endif(CMAKE_COMPILER_IS_GNUCC) | ||
|
||
if(CMAKE_BUILD_TYPE STREQUAL "Coverage") | ||
if(CMAKE_COMPILER_IS_GNUCC) | ||
set(CMAKE_SHARED_LINKER_FLAGS "-fprofile-arcs -ftest-coverage") | ||
endif(CMAKE_COMPILER_IS_GNUCC) | ||
endif(CMAKE_BUILD_TYPE STREQUAL "Coverage") | ||
|
||
option(USE_PKCS11_HELPER_LIBRARY "Build PolarSSL with the pkcs11-helper library." OFF) | ||
|
||
option(ENABLE_ZLIB_SUPPORT "Build PolarSSL with zlib library." OFF) | ||
|
||
if(LIB_INSTALL_DIR) | ||
else() | ||
set(LIB_INSTALL_DIR lib) | ||
endif() | ||
|
||
include_directories(include/) | ||
|
||
if(ENABLE_ZLIB_SUPPORT) | ||
find_package(ZLIB) | ||
|
||
if(ZLIB_FOUND) | ||
include_directories(ZLIB_INCLUDE_DIR) | ||
endif(ZLIB_FOUND) | ||
endif(ENABLE_ZLIB_SUPPORT) | ||
|
||
add_subdirectory(library) | ||
add_subdirectory(include) | ||
|
||
if(CMAKE_COMPILER_IS_GNUCC) | ||
add_subdirectory(tests) | ||
endif(CMAKE_COMPILER_IS_GNUCC) | ||
|
||
add_subdirectory(programs) | ||
|
||
ADD_CUSTOM_TARGET(apidoc | ||
COMMAND doxygen doxygen/polarssl.doxyfile | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
Oops, something went wrong.