aboutsummaryrefslogtreecommitdiff
path: root/tls/CMakeLists.txt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* set link library dependencies with MSVC, fixes #221Brent Cook2016-07-311-0/+3
|
* add cmake build optionskinichiro2016-04-141-0/+6
| | | | | | | | | | | | | - add cmake build options as configure provides * -DENABLE_ASM (default ON) * -DENABLE_EXTRATESTS (default OFF) * -DENABLE_NC (default OFF) * -DOPENSSLDIR (default ${CMAKE_INSTALL_PREFIX}/etc/ssl) - add biotest and pidwraptest if ENABLE_EXTRATESTS is ON - add compiler flag `-fno-common` if CMAKE_SYSTEM_NAME is Darwin to prevent link error Undefined symbols "_OPENSSL_ia32cap_P"
* fix cmake on HP-UXkinichiro2016-04-041-1/+1
| | | | | | | | | | | | | | | | | - CMakeLists.txt * add OS specific compiler flags and library * add checking size of time_t * add checking memmem() - tests/CMakeLists.txt * add if(HAVE_MEMMEM) for explicit_bzero * add checking SMALL_TIME_T for rfc5280time - crypto/CMakeLists.txt * add getentropy_hpux.c - tls/CMakeLists.txt * fix checking strsep
* include new tls headersBrent Cook2015-09-131-0/+2
|
* Do not build lib-objects targets if we are just building static libs.Brent Cook2015-09-091-8/+8
| | | | This confuses some cmake targets.
* disable shared CMake builds for OS X / Windows for nowBrent Cook2015-09-071-4/+9
|
* Add install targets and shared libraries to CMakeJeff Davey2015-08-181-1/+8
|
* add initial CMake and Visual Studio build supportBrent Cook2015-07-211-0/+22
This moves the compatibility include files from include to include/compat so we can use the awful MS C compiler <../include/> trick to emulate the GNU #include_next extension. This also removes a few old compat files we do not need anymore.