Update configuration of the OpenVPNAdapter target

This commit is contained in:
Sergey Abramchuk
2020-03-03 13:33:44 +03:00
parent e3266c3792
commit dd08e51a19

View File

@@ -15,8 +15,10 @@ let package = Package(
.target( .target(
name: "OpenVPNAdapter", name: "OpenVPNAdapter",
dependencies: [ dependencies: [
.target(name: "mbedTLS"),
.target(name: "OpenVPN3") .target(name: "OpenVPN3")
], ],
sources: ["library"],
cxxSettings: [ cxxSettings: [
.headerSearchPath("../OpenVPN3"), .headerSearchPath("../OpenVPN3"),
] ]
@@ -60,4 +62,4 @@ let package = Package(
) )
], ],
cxxLanguageStandard: .gnucxx14 cxxLanguageStandard: .gnucxx14
) )