Rename target to OpenVPNClient and create separate folder for it

This commit is contained in:
Sergey Abramchuk
2020-03-03 13:47:13 +03:00
parent ea77618c28
commit 8a79798c2c
3 changed files with 5 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ let package = Package(
name: "OpenVPNAdapter",
dependencies: [
.target(name: "mbedTLS"),
.target(name: "OpenVPN3")
.target(name: "OpenVPNClient")
],
sources: ["library"],
cxxSettings: [
@@ -46,15 +46,15 @@ let package = Package(
]
),
.target(
name: "OpenVPN3",
name: "OpenVPNClient",
dependencies: [
.target(name: "LZ4"),
.target(name: "mbedTLS")
],
sources: ["library"],
cxxSettings: [
.headerSearchPath("."),
.headerSearchPath("../ASIO/asio/include"),
.headerSearchPath("../OpenVPN3"),
.define("ASIO_STANDALONE"),
.define("ASIO_NO_DEPRECATED"),
.define("ASIO_HAS_STD_STRING_VIEW"),

View File

@@ -0,0 +1 @@
../../OpenVPN3/client/ovpncli.hpp

View File

@@ -0,0 +1 @@
../../OpenVPN3/client/ovpncli.cpp