mirror of https://github.com/kokke/tiny-AES-c
18 lines
413 B
Python
18 lines
413 B
Python
|
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)
|