Skip to content
Snippets Groups Projects
Select Git revision
  • bfdac0281fb9ac46b812520c41c5279367e2d4e1
  • develop default protected
  • feature/gmsh-reader
  • origin/stage/bouguettaia
  • feature/kinetic-schemes
  • feature/reconstruction
  • feature/local-dt-fsi
  • feature/composite-scheme-sources
  • feature/composite-scheme-other-fluxes
  • feature/serraille
  • feature/variational-hydro
  • feature/composite-scheme
  • hyperplastic
  • feature/polynomials
  • feature/gks
  • feature/implicit-solver-o2
  • feature/coupling_module
  • feature/implicit-solver
  • feature/merge-local-dt-fsi
  • master protected
  • feature/escobar-smoother
  • v0.5.0 protected
  • v0.4.1 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • v0.2.0 protected
  • v0.1.0 protected
  • Kidder
  • v0.0.4 protected
  • v0.0.3 protected
  • v0.0.2 protected
  • v0 protected
  • v0.0.1 protected
33 results

conanfile.py

Blame
    • Stéphane Del Pino's avatar
      bfdac028
      git subrepo pull packages/rang · bfdac028
      Stéphane Del Pino authored
      subrepo:
        subdir:   "packages/rang"
        merged:   "cabe04d6d"
      upstream:
        origin:   "git@github.com:agauniyal/rang.git"
        branch:   "master"
        commit:   "cabe04d6d"
      git-subrepo:
        version:  "0.4.0"
        origin:   "git@github.com:ingydotnet/git-subrepo.git"
        commit:   "5d6aba9"
      bfdac028
      History
      git subrepo pull packages/rang
      Stéphane Del Pino authored
      subrepo:
        subdir:   "packages/rang"
        merged:   "cabe04d6d"
      upstream:
        origin:   "git@github.com:agauniyal/rang.git"
        branch:   "master"
        commit:   "cabe04d6d"
      git-subrepo:
        version:  "0.4.0"
        origin:   "git@github.com:ingydotnet/git-subrepo.git"
        commit:   "5d6aba9"
    conanfile.py 716 B
    from conans import ConanFile, Meson
    
    
    class RangConan(ConanFile):
        name = "rang"
        version = "3.1.0"
        license = "The Unlicense"
        url = "https://github.com/agauniyal/rang"
        description = "A Minimal, Header only Modern c++ library for colors in your terminal"
        generators = "pkg_config"
        build_requires = "doctest/1.2.6@bincrafters/stable"
        exports_sources = "*"
        settings = "build_type"
    
        def build(self):
            meson = Meson(self)
            meson.configure(cache_build_folder="build")
            meson.build()
    
        def package(self):
            self.copy("*.hpp")
            self.copy(pattern="LICENSE", dst="licenses", keep_path=False)
    
        def package_id(self):
            self.info.header_only()