summaryrefslogtreecommitdiffstats
path: root/test_package/conanfile.py
blob: 08f550fe13d2fdd4ede8277400c1586de273cff8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from conans import ConanFile, CMake, tools
import os


class TinyAesCTestConan(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)