summaryrefslogtreecommitdiff
path: root/tests/conan/conanfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/conan/conanfile.py')
-rw-r--r--tests/conan/conanfile.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/conan/conanfile.py b/tests/conan/conanfile.py
new file mode 100644
index 0000000..c3341f9
--- /dev/null
+++ b/tests/conan/conanfile.py
@@ -0,0 +1,17 @@
+import os
+from conans import ConanFile, CMake, tools
+
+
+class OpenCLHeadersTestConan(ConanFile):
+ settings = "os", "compiler", "build_type", "arch"
+ generators = "cmake"
+
+ def build(self):
+ cmake = CMake(self)
+ cmake.configure()
+ cmake.build()
+
+ def test(self):
+ if not tools.cross_building(self.settings):
+ os.chdir("bin")
+ self.run(".%sexample" % os.sep)