File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,16 @@ set(CXX_STANDARD_REQUIRED 11)
8
8
9
9
set (LIBMCPHASE_PYTHON_MODULE libmcphase)
10
10
11
+ # The latest VS needs an extra library VCRUNTIME140_1.dll which is not in
12
+ # the anaconda redistributable module (yet) - so disable it.
13
+ # https://developercommunity.visualstudio.com/content/problem/852548/vcruntime140-1dll-is-missing.html
14
+ if (WIN32 )
15
+ set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -d2FH4-" )
16
+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -d2FH4-" )
17
+ set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -d2:-FH4-" )
18
+ set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -d2:-FH4-" )
19
+ endif (WIN32 )
20
+
11
21
include (Eigen)
12
22
include_directories (${EIGEN3_INCLUDE_DIR} )
13
23
Original file line number Diff line number Diff line change 1
- 0.1.0
1
+ 0.1.2
You can’t perform that action at this time.
0 commit comments