Fix couple of build issues on gcc

This commit is contained in:
Lukas Matena 2020-10-23 07:51:58 +02:00
parent 9a4376ddc6
commit 5670f5ffb0
5 changed files with 9 additions and 4 deletions

View File

@ -78,9 +78,9 @@ void AppConfig::set_defaults()
set("single_instance",
#ifdef __APPLE__
"1"
#else __APPLE__
#else // __APPLE__
"0"
#endif __APPLE__
#endif // __APPLE__
);
if (get("remember_output_path").empty())

View File

@ -11,6 +11,7 @@
#include <mutex>
#include <tbb/parallel_for.h>
#include <tbb/tbb_thread.h>
#include <tbb/task_scheduler_init.h>
#define SLIC3R_THREAD_NAME_WIN32_MODERN

View File

@ -14,6 +14,7 @@
#include <wx/msgdlg.h>
#include <boost/nowide/iostream.hpp>
#include <boost/nowide/convert.hpp>
namespace Slic3r {
namespace GUI {

View File

@ -1,7 +1,10 @@
#ifndef slic3r_GUI_Init_hpp_
#define slic3r_GUI_Init_hpp_
#include <libslic3r/PrintConfig.hpp>
namespace Slic3r {
namespace GUI {
struct GUI_InitParams
@ -21,4 +24,4 @@ int GUI_Run(GUI_InitParams &params);
} // namespace GUI
} // namespace Slic3r
#endif slic3r_GUI_Init_hpp_
#endif // slic3r_GUI_Init_hpp_

View File

@ -9,7 +9,7 @@
#include <wx/filehistory.h>
#ifdef __APPLE__
#include <wx/taskbar.h>
#endif __APPLE__
#endif // __APPLE__
#include <string>
#include <map>