mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-09-14 01:33:14 +08:00
set mpdecimal cxx option to false on windows
the combination of compiling it shared and with cxx is invalid on Windows. We don't use the cxx capabilities of mpdecimal Contributes to CURA-9365
This commit is contained in:
parent
74bd183869
commit
05191af96f
@ -85,6 +85,8 @@ class CuraConan(ConanFile):
|
||||
|
||||
def configure(self):
|
||||
self.options["*"].shared = True
|
||||
if self.settings.os == "Windows":
|
||||
self.options["mpdecimal"].cxx = False
|
||||
|
||||
def validate(self):
|
||||
if self.version and tools.Version(self.version) <= tools.Version("4"):
|
||||
|
Loading…
x
Reference in New Issue
Block a user