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

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'PyArcWelder')
-rw-r--r--PyArcWelder/CMakeLists.txt8
-rw-r--r--PyArcWelder/sourcelist.cmake2
2 files changed, 8 insertions, 2 deletions
diff --git a/PyArcWelder/CMakeLists.txt b/PyArcWelder/CMakeLists.txt
index 593eaf2..c4462a6 100644
--- a/PyArcWelder/CMakeLists.txt
+++ b/PyArcWelder/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required (VERSION "3.13")
+cmake_minimum_required (VERSION "3.15")
project(PyArcWelder C CXX)
@@ -15,6 +15,12 @@ include_directories(${PYTHON_INCLUDE_DIRS} ${ArcWelder_INCLUDE_DIRS} ${GcodeProc
# PyArcWelderSources variable
include(sourcelist.cmake)
+
+if(MSVC)
+ # link to the msvc runtime statically, keeping debug info if we are in debug config
+ set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
+endif()
+
# Create our library
add_library(${PROJECT_NAME} SHARED ${PyArcWelderSources})
diff --git a/PyArcWelder/sourcelist.cmake b/PyArcWelder/sourcelist.cmake
index ff43231..e1a425d 100644
--- a/PyArcWelder/sourcelist.cmake
+++ b/PyArcWelder/sourcelist.cmake
@@ -7,4 +7,4 @@ set(PyArcWelderSources ${PyArcWelderSources}
py_logger.h
python_helpers.cpp
python_helpers.h
-) \ No newline at end of file
+)