split debug & release for windows
This commit is contained in:
14
doric-Qt/example/doric/scripts/conanfile-windows-release.py
Normal file
14
doric-Qt/example/doric/scripts/conanfile-windows-release.py
Normal file
@@ -0,0 +1,14 @@
|
||||
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("*.lib", dst="lib",src="../../../binary/doric/release")
|
||||
self.copy("*", dst="qml",src="../resources")
|
||||
self.copy("*.js", dst="js",src="../../../../doric-js/bundle")
|
||||
def package_info(self):
|
||||
self.cpp_info.libs = ["DoricCore"]
|
||||
Reference in New Issue
Block a user