diff --git a/conanfile.py b/conanfile.py new file mode 100644 index 0000000..7cf3666 --- /dev/null +++ b/conanfile.py @@ -0,0 +1,21 @@ +from conan import ConanFile +from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout, CMakeDeps + +class mxmlRecipe(ConanFile): + name = "mxml" + version = "4.0.4" + + settings = "os", "compiler", "build_type", "arch" + + def layout(self): + cmake_layout(self) + + def build(self): + cmake = CMake(self) + cmake.configure() + cmake.build() + + def package(self): + cmake = CMake(self) + cmake.install() +