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:
authorVojtech Kral <vojtech@kral.hk>2018-10-12 15:19:08 +0300
committerVojtech Kral <vojtech@kral.hk>2018-10-15 17:47:15 +0300
commit0b0e65636fc696bcf9416ccccbec5f86eefae987 (patch)
treeacd46fc955a1289ae7288e5c30fc3002cbb1a3f6 /xs
parentadf739cd454bb905715ec83718b9b7074f84138a (diff)
Build improvements: symlink resources properly with Visual Studio
Convert dependencies into a CMake build script in the `deps` dir
Diffstat (limited to 'xs')
-rw-r--r--xs/CMakeLists.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/xs/CMakeLists.txt b/xs/CMakeLists.txt
index 9a08beadc..27228dacf 100644
--- a/xs/CMakeLists.txt
+++ b/xs/CMakeLists.txt
@@ -207,11 +207,6 @@ install(FILES lib/Slic3r/XS.pm DESTINATION ${PERL_VENDORLIB}/Slic3r)
enable_testing()
get_filename_component(PERL_BIN_PATH "${PERL_EXECUTABLE}" DIRECTORY)
if (MSVC)
- # By default the startup project in MSVC is the 'ALL_BUILD' cmake-created project,
- # but we want 'slic3r' as the startup one because debugging run command is associated with it.
- # (Unfortunatelly it cannot be associated with ALL_BUILD using CMake.)
- # Note: For some reason this needs to be set in the top-level CMakeLists.txt
- set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT XS)
set(PERL_PROVE "${PERL_BIN_PATH}/prove.bat")
else ()
set(PERL_PROVE "${PERL_BIN_PATH}/prove")