mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 01:03:19 +02:00
🔧 Also generate RelWithDebInfo config on Linux
This commit is contained in:
parent
6ad41bb27c
commit
add0436444
1 changed files with 3 additions and 2 deletions
|
@ -95,7 +95,7 @@ class Overte(ConanFile):
|
|||
tc.generate()
|
||||
deps = CMakeDeps(self)
|
||||
deps.generate()
|
||||
if self.settings.os == "Windows" and self.settings.build_type == "Release":
|
||||
if self.settings.build_type == "Release":
|
||||
deps.configuration = "RelWithDebInfo"
|
||||
deps.generate()
|
||||
|
||||
|
@ -132,6 +132,7 @@ class Overte(ConanFile):
|
|||
)
|
||||
copy(self, "*.dll", src, bindir, False)
|
||||
copy(self, "*.so*", src, bindir, False)
|
||||
if self.settings.os == "Windows" and self.settings.build_type == "Release":
|
||||
if self.settings.build_type == "Release":
|
||||
bindir = os.path.join(self.build_folder, "conanlibs", "RelWithDebInfo")
|
||||
copy(self, "*.dll", src, bindir, False)
|
||||
copy(self, "*.so*", src, bindir, False)
|
||||
|
|
Loading…
Reference in a new issue