This commit is contained in:
Fish 2024-11-26 13:00:35 +00:00 committed by GitHub
commit b7cb05a3f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

30
conanfile.py Normal file
View File

@ -0,0 +1,30 @@
import os
from conans import ConanFile
class QtPromiseConfig(ConanFile):
name = "QtPromise"
version = "master"
license = "QtPromise is available under the MIT license."
author = "simonbrunel"
url = "https://github.com/simonbrunel/qtpromise"
description = "Promises/A+ implementation for Qt/C++"
settings = "os", "compiler", "build_type", "arch"
def package_id(self):
self.info.header_only()
def source(self):
self.run("git clone git@github.com:simonbrunel/qtpromise.git")
def package(self):
self.copy("*", dst="include", src="./qtpromise/include")
self.copy("*", dst="src", src="./qtpromise/src")
def package_info(self):
self.cpp_info.libs = self.collect_libs()
if __name__ == '__main__':
os.system("conan create .")