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 c8b4e65 commit b511f71
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 OptionalBareConan(ConanFile):
version = "1.0.0"
name = "optional-bare"
description = "A simple version of a C++17-like optional for default-constructible, copyable types, for C++98 and later in a single-file header-only library"
license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"
url = "https://github.com/martinmoene/optional-bare.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["OPTIONAL_BARE_OPT_BUILD_TESTS"] = "OFF"
cmake.definitions["OPTIONAL_BARE_OPT_BUILD_EXAMPLES"] = "OFF"
cmake.configure()
cmake.install()

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

0 comments on commit b511f71

Please sign in to comment.