include openssl

This commit is contained in:
Lukas Lihotzki 2021-04-19 20:35:05 +02:00
commit f871e6a81c
4 changed files with 24 additions and 0 deletions

5
android/CMakeLists.txt Normal file
View file

@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 3.6)
project(flutter_openssl_crypto)
find_package(openssl REQUIRED CONFIG)
add_library(${PROJECT_NAME} SHARED empty.c)
target_link_libraries(${PROJECT_NAME} PRIVATE openssl::crypto)