-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconanfile.py
More file actions
29 lines (24 loc) · 1016 Bytes
/
conanfile.py
File metadata and controls
29 lines (24 loc) · 1016 Bytes
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
27
28
29
import os, conans
class ExperimentsConan(conans.ConanFile):
name = "experiments"
version = "1.0"
license = "<Put the package license here>"
url = "<Package recipe repository url here, for issues about the package>"
description = "<Description of Toto here>"
settings = "os", "compiler", "build_type", "arch"
generators = "cmake_find_package"
def requirements(self):
self.requires("Catch2/2.9.2@catchorg/stable")
self.requires("fmt/5.3.0@bincrafters/stable")
self.requires("boost/1.70.0@conan/stable")
self.requires("bzip2/1.0.8@conan/stable")
self.requires("jsonformoderncpp/3.6.1@vthiery/stable")
# self.requires("sfml/2.5.0@bincrafters/stable")
def configure(self):
# self.options["sfml"].window = True
# self.options["sfml"].graphics = True
# self.options["sfml"].network = True
# self.options["sfml"].audio = True
pass
def imports(self):
self.copy("*.dll", "bin", "bin")