🔧 Also generate RelWithDebInfo config on Linux

This commit is contained in:
Edgar 2024-12-21 20:16:50 +01:00
parent 6ad41bb27c
commit add0436444
No known key found for this signature in database
GPG key ID: 3C2E1F2C1C353131

View file

@ -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)