mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-21 05:37:50 -06: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
1 changed files with 2 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue