mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-15 00:45:52 +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
|
// constants to reduce the proliferation of macros in the rest of the code
|
||||||
#ifdef __WIN32
|
#ifdef __WIN32
|
||||||
constexpr OS the_os = OS::Windows;
|
constexpr OS the_os = OS::Windows;
|
||||||
|
constexpr bool wxGTK {false};
|
||||||
#elif __APPLE__
|
#elif __APPLE__
|
||||||
constexpr OS the_os = OS::Mac;
|
constexpr OS the_os = OS::Mac;
|
||||||
|
constexpr bool wxGTK {false};
|
||||||
#elif __linux__
|
#elif __linux__
|
||||||
constexpr OS the_os = OS::Linux;
|
constexpr OS the_os = OS::Linux;
|
||||||
#ifdef __WXGTK__
|
#ifdef __WXGTK__
|
||||||
|
Loading…
x
Reference in New Issue
Block a user