Skip to content

Commit

Permalink
Improve conan/cmake interoperation (nonstd-lite issue 32)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Apr 18, 2019
1 parent ed5b3aa commit 1784e68
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions conanfile.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
from conans import ConanFile
from conans import ConanFile, CMake

class RingSpanLiteConan(ConanFile):
version = "0.2.0"
name = "ring-span-lite"
description = "ring-span"
license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"
url = "https://github.com/martinmoene/ring-span-lite.git"
exports_sources = "include/nonstd/*", "LICENSE.txt"
build_policy = "missing"
exports_sources = "include/nonstd/*", "CMakeLists.txt", "cmake/*", "LICENSE.txt"
build_policy = "missing"
author = "Martin Moene"

def build(self):
"""Avoid warning on build step"""
pass

def package(self):
"""Provide pkg/include/nonstd/*.hpp"""
self.copy("*.hpp")
"""Run CMake install"""
cmake = CMake(self)
cmake.definitions["RING_SPAN_LITE_OPT_BUILD_TESTS"] = "OFF"
cmake.definitions["RING_SPAN_LITE_OPT_BUILD_EXAMPLES"] = "OFF"
cmake.configure()
cmake.install()

def package_info(self):
self.info.header_only()

0 comments on commit 1784e68

Please sign in to comment.