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:
Diffstat (limited to 'xs/CMakeLists.txt')
-rw-r--r--xs/CMakeLists.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/xs/CMakeLists.txt b/xs/CMakeLists.txt
index a59a19936..962e2e04d 100644
--- a/xs/CMakeLists.txt
+++ b/xs/CMakeLists.txt
@@ -62,7 +62,6 @@ set(XS_XSP_FILES
${XSP_DIR}/Layer.xsp
${XSP_DIR}/Line.xsp
${XSP_DIR}/Model.xsp
- ${XSP_DIR}/MotionPlanner.xsp
${XSP_DIR}/PerimeterGenerator.xsp
${XSP_DIR}/PlaceholderParser.xsp
${XSP_DIR}/Point.xsp
@@ -185,6 +184,16 @@ if (MSVC)
string(REPLACE "/" "\\" PROPS_CMAKE_SOURCE_DIR "${CMAKE_SOURCE_DIR}")
configure_file("../cmake/msvc/xs.wperl.props.in" "${CMAKE_BINARY_DIR}/xs.wperl.props" NEWLINE_STYLE CRLF)
set_target_properties(XS PROPERTIES VS_USER_PROPS "${CMAKE_BINARY_DIR}/xs.wperl.props")
+
+ if ("${CMAKE_SIZEOF_VOID_P}" STREQUAL "8")
+ set(_bits 64)
+ elseif ("${CMAKE_SIZEOF_VOID_P}" STREQUAL "4")
+ set(_bits 32)
+ endif ()
+ add_custom_command(TARGET XS POST_BUILD
+ COMMAND ${CMAKE_COMMAND} -E copy ${TOP_LEVEL_PROJECT_DIR}/deps/GMP/gmp/lib/win${_bits}/libgmp-10.dll "${PERL_LOCAL_LIB_ARCH_DIR}/auto/Slic3r/XS/"
+ COMMENT "Installing gmp runtime into the local-lib directory ..."
+ VERBATIM)
endif()
# Installation