mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-14 02:05:56 +08:00
Define wxGTK as false under win32 or osx
This commit is contained in:
parent
a57a9dc700
commit
ce21077c61
@ -29,8 +29,10 @@ enum class OS { Linux, Mac, Windows } ;
|
||||
// constants to reduce the proliferation of macros in the rest of the code
|
||||
#ifdef __WIN32
|
||||
constexpr OS the_os = OS::Windows;
|
||||
constexpr bool wxGTK {false};
|
||||
#elif __APPLE__
|
||||
constexpr OS the_os = OS::Mac;
|
||||
constexpr bool wxGTK {false};
|
||||
#elif __linux__
|
||||
constexpr OS the_os = OS::Linux;
|
||||
#ifdef __WXGTK__
|
||||
|
Loading…
x
Reference in New Issue
Block a user