This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/example/doric/scripts/conanfile-macos-debug.py
2021-05-20 18:27:45 +08:00

14 lines
501 B
Python

from conans import ConanFile
class DoricCore(ConanFile):
license = "MIT"
name = "DoricCore"
settings = "os", "compiler", "build_type", "arch"
def package(self):
self.copy("*.h", dst="include", src="../../doric")
self.copy("*.a", dst="lib",src="../../../binary/debug/doric")
self.copy("*", dst="qml",src="../resources")
self.copy("*.js", dst="js",src="../../../../doric-js/bundle")
def package_info(self):
self.cpp_info.libs = ["DoricCore"]