Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Matena <lukasmatena@seznam.cz>2020-01-06 14:41:29 +0300
committerLukas Matena <lukasmatena@seznam.cz>2020-01-06 14:41:29 +0300
commit0551411c48d3b3ae170fcc42b27ca62e99b06899 (patch)
treec49c2bae79ab9ae3d8bde89a3f948093049a8806 /src/slic3r/CMakeLists.txt
parent4d182a57480ed680d2b5fbfa77539c84da60d8ad (diff)
parent8fd753ab2758e9c4452e4f0863ebfd41ed0dda4d (diff)
Merge branch 'master' into lm_tm_hollowing
Diffstat (limited to 'src/slic3r/CMakeLists.txt')
-rw-r--r--src/slic3r/CMakeLists.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/slic3r/CMakeLists.txt b/src/slic3r/CMakeLists.txt
index 4156481b0..c489a0f8a 100644
--- a/src/slic3r/CMakeLists.txt
+++ b/src/slic3r/CMakeLists.txt
@@ -113,6 +113,8 @@ set(SLIC3R_GUI_SOURCES
GUI/WipeTowerDialog.hpp
GUI/RammingChart.cpp
GUI/RammingChart.hpp
+ GUI/RemovableDriveManager.cpp
+ GUI/RemovableDriveManager.hpp
GUI/BonjourDialog.cpp
GUI/BonjourDialog.hpp
GUI/ButtonsDescription.cpp
@@ -153,6 +155,8 @@ set(SLIC3R_GUI_SOURCES
Utils/Duet.hpp
Utils/FlashAir.cpp
Utils/FlashAir.hpp
+ Utils/AstroBox.cpp
+ Utils/AstroBox.hpp
Utils/PrintHost.cpp
Utils/PrintHost.hpp
Utils/Bonjour.cpp
@@ -170,7 +174,12 @@ if (APPLE)
list(APPEND SLIC3R_GUI_SOURCES
Utils/RetinaHelperImpl.mm
Utils/MacDarkMode.mm
+ GUI/RemovableDriveManagerMM.mm
+ GUI/RemovableDriveManagerMM.h
)
+ #DK
+ FIND_LIBRARY(DISKARBITRATION_LIBRARY DiskArbitration)
+
endif ()
add_library(libslic3r_gui STATIC ${SLIC3R_GUI_SOURCES})
@@ -178,6 +187,11 @@ add_library(libslic3r_gui STATIC ${SLIC3R_GUI_SOURCES})
encoding_check(libslic3r_gui)
target_link_libraries(libslic3r_gui libslic3r avrdude cereal imgui GLEW::GLEW OpenGL::GL OpenGL::GLU hidapi)
+#DK
+if(APPLE)
+ target_link_libraries(libslic3r_gui ${DISKARBITRATION_LIBRARY})
+endif()
+
if (SLIC3R_PCH AND NOT SLIC3R_SYNTAXONLY)
add_precompiled_header(libslic3r_gui pchheader.hpp FORCEINCLUDE)
endif ()