diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2018-11-24 20:38:48 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2018-11-24 20:38:48 +0100 |
| commit | e70f0b4de81d24d22a29a2af03c669368fce6af2 (patch) | |
| tree | f91dfd02434ce460e6120c7747aa0092cbd2327f /conanfile.py | |
| download | wanda-e70f0b4de81d24d22a29a2af03c669368fce6af2.tar.xz wanda-e70f0b4de81d24d22a29a2af03c669368fce6af2.zip | |
wanda: initial commit
Diffstat (limited to 'conanfile.py')
| -rw-r--r-- | conanfile.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/conanfile.py b/conanfile.py new file mode 100644 index 0000000..ddb17e8 --- /dev/null +++ b/conanfile.py @@ -0,0 +1,25 @@ +# pylint: disable=missing-docstring + +from conans import ConanFile, CMake + +class Wanda(ConanFile): + name = "wanda" + version = "0.1" + license = "BSD 3-clause" + description = "A wallpaper changer for the GNOME" + generators = "cmake" + export_sources = ( + "CMakeLists.txt", + "src/*", + ) + requires = ( + "boost_program_options/1.67.0@bincrafters/stable", + ) + + def build(self): + cmake = CMake(self) + cmake.configure(source_folder="src") + cmake.build() + + def package(self): + pass |
