change script
This commit is contained in:
parent
ada65c836f
commit
01282b9530
@ -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):
|
||||||
|
@ -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):
|
||||||
|
Reference in New Issue
Block a user