mirror of
https://github.com/simonbrunel/qtpromise.git
synced 2024-12-05 01:11:54 +08:00
Merge 9bb107d7f4
into 1a905cbd4f
This commit is contained in:
commit
b7cb05a3f7
30
conanfile.py
Normal file
30
conanfile.py
Normal 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 .")
|
Loading…
Reference in New Issue
Block a user