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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2020-04-28 22:01:09 +0300
committertamasmeszaros <meszaros.q@gmail.com>2020-04-28 22:01:09 +0300
commit6f7fa4bc09ce174350186a47dfc21754bb659d85 (patch)
tree6176b79400d3a14861a209dae2abdaef185b84f2 /src
parentf3c154a88a7e6fae0a5d4f5fdfd4260863e33a35 (diff)
Fix librt linking for wxWidgets
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt6
-rw-r--r--src/slic3r/CMakeLists.txt2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 7509ad474..281f9e663 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -71,6 +71,12 @@ if (SLIC3R_GUI)
list(APPEND wxWidgets_LIBRARIES ${EXPAT_LIBRARIES})
endif ()
+ # This is an issue in the new wxWidgets cmake build, doesn't deal with librt
+ find_library(LIBRT rt)
+ if(LIBRT)
+ list(APPEND wxWidgets_LIBRARIES ${LIBRT})
+ endif()
+
# list(REMOVE_ITEM wxWidgets_LIBRARIES oleacc)
message(STATUS "wx libs: ${wxWidgets_LIBRARIES}")
diff --git a/src/slic3r/CMakeLists.txt b/src/slic3r/CMakeLists.txt
index 3711b12a1..2ac8a1ff0 100644
--- a/src/slic3r/CMakeLists.txt
+++ b/src/slic3r/CMakeLists.txt
@@ -204,7 +204,7 @@ 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 libcurl ${wxWidgets_LIBRARIES} rt)
+target_link_libraries(libslic3r_gui libslic3r avrdude cereal imgui GLEW::GLEW OpenGL::GL OpenGL::GLU hidapi libcurl ${wxWidgets_LIBRARIES})
if(APPLE)
target_link_libraries(libslic3r_gui ${DISKARBITRATION_LIBRARY})