Initial conan support.

pull/330/head
Lance Wallis 2 weeks ago
parent 081b2c75de
commit 02a2f38550
No known key found for this signature in database
GPG Key ID: AE7847735CE374E4
  1. 21
      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()
Loading…
Cancel
Save