blob: e084427cc681c3e05e1b5ea1396a671d6b7b8f79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# 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",
"boost_iterator/1.67.0@bincrafters/stable",
)
def build(self):
cmake = CMake(self)
cmake.configure(source_folder="src")
cmake.build()
def package(self):
pass
|