mirror-chatterino2/conan-pkgs/Serialize/conanfile.py

25 lines
735 B
Python
Raw Normal View History

2021-02-12 12:34:28 +01:00
from conans import ConanFile, CMake, tools
2021-02-12 14:15:23 +01:00
class SerializeConan(ConanFile):
2021-02-12 12:34:28 +01:00
name = "serialize"
version = "0.1"
license = "MIT"
author = "Edgar Edgar@AnotherFoxGuy.com"
url = "https://github.com/Chatterino/chatterino2"
description = "c++ serialize/deserialize helper functions based on rapidjson"
settings = "os", "compiler", "build_type", "arch"
generators = "cmake"
no_copy_source = True
def source(self):
git = tools.Git()
git.clone("https://github.com/pajlada/serialize.git")
git.checkout("130ffc3ec722284ca454a1e70c5478a75f380144")
def package(self):
2021-02-12 14:15:23 +01:00
self.copy("*.hpp", "include", "include")
2021-02-12 12:34:28 +01:00
def package_id(self):
self.info.header_only()