2019-04-04 10:34:58 +02:00
|
|
|
# The MIT License (MIT)
|
|
|
|
#
|
|
|
|
# Copyright (c) 2018 Mateusz Pusz
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
|
|
# copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
2018-08-22 12:11:19 +02:00
|
|
|
from conans import ConanFile, CMake
|
|
|
|
|
2019-04-04 10:34:58 +02:00
|
|
|
class UnitsConan(ConanFile):
|
2018-08-22 12:11:19 +02:00
|
|
|
name = "units"
|
|
|
|
version = "0.0.1"
|
|
|
|
author = "Mateusz Pusz"
|
|
|
|
license = "https://github.com/mpusz/units/blob/master/LICENSE"
|
|
|
|
url = "https://github.com/mpusz/units"
|
2018-09-28 07:47:37 -07:00
|
|
|
description = "Physical Units library for C++"
|
2018-08-22 12:11:19 +02:00
|
|
|
settings = "os", "compiler", "build_type", "arch"
|
2019-04-05 17:46:01 +02:00
|
|
|
requires = (
|
|
|
|
"cmcstl2/2019.03.18@mpusz/stable",
|
|
|
|
"gsl-lite/0.33.0@nonstd-lite/stable"
|
|
|
|
)
|
2019-04-04 11:00:40 +02:00
|
|
|
generators = "cmake"
|
2018-08-22 12:11:19 +02:00
|
|
|
|
|
|
|
def build(self):
|
|
|
|
cmake = CMake(self)
|
|
|
|
cmake.configure(source_dir="%s/src" % self.source_folder)
|
|
|
|
cmake.build()
|
|
|
|
# cmake.install()
|
|
|
|
|
|
|
|
def package_info(self):
|
|
|
|
self.cpp_info.libs = ["units"]
|