diff options
author | Arne Schwabe <arne@rfc2549.org> | 2020-08-02 19:11:09 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2020-08-02 19:11:56 +0200 |
commit | 1bad88978b00d5dd5f87eab61cf1dc6feff49528 (patch) | |
tree | 9d71c028d90a37b270500f9ee2cc14aef767f054 /main/src | |
parent | 22522cef50e78266177c9693b7e05ad28108d918 (diff) |
Fix app not launching on older APIs
Diffstat (limited to 'main/src')
-rw-r--r-- | main/src/main/cpp/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/main/cpp/CMakeLists.txt b/main/src/main/cpp/CMakeLists.txt index 93539483..bfd06fba 100644 --- a/main/src/main/cpp/CMakeLists.txt +++ b/main/src/main/cpp/CMakeLists.txt @@ -207,7 +207,7 @@ set(openvpn_srcs PREPEND(openvpn_srcs_with_path "openvpn" ${openvpn_srcs}) -add_library(openvpn STATIC ${openvpn_srcs_with_path}) +add_library(openvpn SHARED ${openvpn_srcs_with_path}) target_include_directories(openvpn PRIVATE openvpn-config |