From e70f0b4de81d24d22a29a2af03c669368fce6af2 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Sat, 24 Nov 2018 20:38:48 +0100 Subject: wanda: initial commit --- conanfile.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 conanfile.py (limited to 'conanfile.py') 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 -- cgit v1.2.3