-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0bca753
commit 1cfee19
Showing
4 changed files
with
23 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from conan import ConanFile | ||
from conan.tools.cmake import CMakeDeps | ||
|
||
class ZswagRecipe(ConanFile): | ||
name = "zswag" | ||
|
||
# Specify the generators | ||
generators = "CMakeDeps" | ||
|
||
# Specify options | ||
default_options = { | ||
"openssl*:shared": False | ||
} | ||
|
||
def requirements(self): | ||
self.requires("openssl/3.2.0") | ||
self.requires("keychain/1.3.0") | ||
self.requires("spdlog/1.11.0") | ||
self.requires("pybind11/2.10.4") | ||
self.requires("zlib/1.2.13") | ||
# keychain and libsecret have a conflict here. | ||
self.requires("glib/2.78.3", override=True) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,4 @@ connexion~=2.14.2 | |
requests | ||
zserio<3.0.0 | ||
pyyaml | ||
pyzswagcl==1.7.0 | ||
openapi-spec-validator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters