summaryrefslogtreecommitdiff
path: root/samples/echobot-conan/conanfile.py
diff options
context:
space:
mode:
authorOleg Morozenkov <m@oleg.rocks>2019-12-05 01:06:02 +0300
committerOleg Morozenkov <m@oleg.rocks>2019-12-05 01:06:02 +0300
commit2b5baa24597778d8e9f5d93c30a6f6440ef90971 (patch)
tree589202ffbaecb0ff2176575688e30cf18b317a61 /samples/echobot-conan/conanfile.py
parente1031f20f9139a554c3e4cf70585ae0dcea1bcda (diff)
parent76f36598570a13862471175cbfdbfb9dec4139d2 (diff)
Merge branch 'master' into nitanmarcel/api_update_pr
Diffstat (limited to 'samples/echobot-conan/conanfile.py')
-rw-r--r--samples/echobot-conan/conanfile.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/samples/echobot-conan/conanfile.py b/samples/echobot-conan/conanfile.py
deleted file mode 100644
index 732b9b8..0000000
--- a/samples/echobot-conan/conanfile.py
+++ /dev/null
@@ -1,24 +0,0 @@
-
-import os
-from conans import ConanFile, CMake, tools
-
-
-class TestConan(ConanFile):
- settings = "os", "compiler", "build_type", "arch"
- generators = "cmake"
-
- def build(self):
- cmake = CMake(self)
- # Current dir is "echobot-conan/build/<build_id>" and CMakeLists.txt is in "echobot-conan"
- cmake.configure()
- cmake.build()
-
- def imports(self):
- self.copy("*.dll", dst="bin", src="bin")
- self.copy("*.dylib*", dst="bin", src="lib")
- self.copy('*.so*', dst='bin', src='lib')
-
- def test(self):
- if not tools.cross_building(self.settings):
- os.chdir("bin")
- self.run(".%sexample" % os.sep)