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/xs
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2019-06-13 14:15:10 +0300
committertamasmeszaros <meszaros.q@gmail.com>2019-06-13 15:19:24 +0300
commit821ca0e36a4d85d19ca01b404967f53672b5625f (patch)
tree5a9c59dabe03740e1dc992f924eb4ab20bc2454c /xs
parent9805417028c142784900ec5efbca9cd7f150c80b (diff)
Build fix when boost is not in prefix/boost
Diffstat (limited to 'xs')
-rw-r--r--xs/CMakeLists.txt12
1 files changed, 0 insertions, 12 deletions
diff --git a/xs/CMakeLists.txt b/xs/CMakeLists.txt
index 4696badc4..aaf943970 100644
--- a/xs/CMakeLists.txt
+++ b/xs/CMakeLists.txt
@@ -119,8 +119,6 @@ target_include_directories(XS PRIVATE src ${LIBDIR}/libslic3r)
target_compile_definitions(XS PRIVATE -DSLIC3RXS)
set_target_properties(XS PROPERTIES PREFIX "") # Prevent cmake from generating libXS.so instead of XS.so
-target_link_libraries(XS ${Boost_LIBRARIES})
-
if (APPLE)
# -liconv: boost links to libiconv by default
target_link_libraries(XS "-liconv -framework IOKit" "-framework CoreFoundation" -lc++)
@@ -156,12 +154,6 @@ if (WIN32)
target_link_libraries(XS ${PERL_LIBRARY})
endif()
-target_link_libraries(XS ${Boost_LIBRARIES})
-target_link_libraries(XS ${TBB_LIBRARIES})
-# target_link_libraries(XS ${wxWidgets_LIBRARIES})
-target_link_libraries(XS ${EXPAT_LIBRARIES})
-# target_link_libraries(XS ${GLEW_LIBRARIES})
-
# Install the XS.pm and XS.{so,dll,bundle} into the local-lib directory.
set(PERL_LOCAL_LIB_DIR "../../local-lib/lib/perl5/${PerlEmbed_ARCHNAME}")
add_custom_command(
@@ -181,10 +173,6 @@ if(APPLE)
)
endif()
-if(SLIC3R_PROFILE)
- target_link_libraries(Shiny)
-endif()
-
if (MSVC)
# Here we associate some additional properties with the MSVC project to enable compilation and debugging out of the box.
get_filename_component(PROPS_PERL_BIN_PATH "${PERL_EXECUTABLE}" DIRECTORY)