change script

This commit is contained in:
王劲鹏 2021-05-18 16:39:13 +08:00 committed by osborn
parent ada65c836f
commit 01282b9530
2 changed files with 5 additions and 3 deletions

View File

@ -7,8 +7,9 @@ class DoricCore(ConanFile):
def package(self): def package(self):
self.copy("*.h", dst="include", src="../../doric") self.copy("*.h", dst="include", src="../../doric")
self.copy("*.lib", dst="lib",src="../../../binary/doric/debug") self.copy("DoricCore.lib", dst="lib",src="../../../binary/doric/debug")
self.copy("*.pdb", dst="bin",src="../../../binary/doric/debug") self.copy("DoricCore.dll", dst="lib",src="../../../binary/doric/debug")
self.copy("DoricCore.pdb", dst="bin",src="../../../binary/doric/debug")
self.copy("*", dst="qml",src="../resources") self.copy("*", dst="qml",src="../resources")
self.copy("*.js", dst="js",src="../../../../doric-js/bundle") self.copy("*.js", dst="js",src="../../../../doric-js/bundle")
def package_info(self): def package_info(self):

View File

@ -7,7 +7,8 @@ class DoricCore(ConanFile):
def package(self): def package(self):
self.copy("*.h", dst="include", src="../../doric") self.copy("*.h", dst="include", src="../../doric")
self.copy("*.lib", dst="lib",src="../../../binary/doric/release") self.copy("DoricCore.lib", dst="lib",src="../../../binary/doric/release")
self.copy("DoricCore.dll", dst="lib",src="../../../binary/doric/release")
self.copy("*", dst="qml",src="../resources") self.copy("*", dst="qml",src="../resources")
self.copy("*.js", dst="js",src="../../../../doric-js/bundle") self.copy("*.js", dst="js",src="../../../../doric-js/bundle")
def package_info(self): def package_info(self):