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
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-09-19 14:16:20 +0300
committerbubnikv <bubnikv@gmail.com>2018-09-19 14:16:20 +0300
commit681e9f03b31d9f31ef3724953dbf6b87b8b33346 (patch)
treeffadc3e82f0b33073096fe52983b8075e5f0a497 /src/CMakeLists.txt
parent58a0c41713a43641143fac157219966d3f38c4c8 (diff)
Yet another fix of build process
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 7d184c59f..d7eb47447 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -52,9 +52,9 @@ target_link_libraries(slic3r libslic3r libslic3r_gui ${wxWidgets_LIBRARIES} ${CU
if (APPLE)
# add_compile_options(-stdlib=libc++)
# add_definitions(-DBOOST_THREAD_DONT_USE_CHRONO -DBOOST_NO_CXX11_RVALUE_REFERENCES -DBOOST_THREAD_USES_MOVE)
- target_link_libraries(XS "-framework IOKit" "-framework CoreFoundation" -lc++)
+ target_link_libraries(slic3r "-framework IOKit" "-framework CoreFoundation" -lc++)
elseif (NOT MSVC)
- target_link_libraries(XS -lstdc++)
+ target_link_libraries(slic3r -lstdc++)
endif ()
# Add the OpenGL and GLU libraries.
if (SLIC3R_GUI)