openssl-cmake icon indicating copy to clipboard operation
openssl-cmake copied to clipboard

Build OpenSSL with CMake on MacOS, Win32, Win64 and cross compile for Android, IOS

Results 20 openssl-cmake issues
Sort by recently updated
recently updated
newest added

I am trying to build and use this library in android. This is my cp/CMakeLists.txt's content: ``` cmake_minimum_required(VERSION 3.4.1) add_library( # Sets the name of the library. native-lib # Sets...

I have tried to use the resulting libssl.a and libcrypto.a to compile it with python cryptography and apart from the issue that it requires -fPIC t be defined, the resulting...

# For the God, don't destroy cplusplus project. My job is intergrate openssl to the c++ project of our team by cmake , and I found your repo, this repo....

Hello I got some errors when I try to add this macro OPENSSL_NO_ENGINE to CMakelist.txt. I try to add it to CMakelist.txt like this: ```file( READ ${PROJECT_SOURCE_DIR}/opensslconf.h.cmake CONF ) set(...

``` cmake_minimum_required(VERSION 3.5.1) project(j2534-rpc) set(CMAKE_CXX_STANDARD 11) # architecture if (CMAKE_SIZEOF_VOID_P EQUAL 8) set(ARCHITECTURE_SLUG "x64") elseif (CMAKE_SIZEOF_VOID_P EQUAL 4) set(ARCHITECTURE_SLUG "ia32") endif() # variables set(MSGPACK_USE_BOOST OFF CACHE BOOL "") # dependencies...