mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-14 02:15:55 +08:00
Define wxGTK as false under win32 or osx
This commit is contained in:
parent
6aa0f4c442
commit
24bc7c28aa
@ -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