File tree 2 files changed +12
-12
lines changed
2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ install:
22
22
- " python -c \" import numpy as np;import sys;print(np.get_include())\" "
23
23
init :
24
24
- ps : iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
25
- # on_finish:
26
- # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
25
+ on_finish :
26
+ - ps : $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
27
27
build :
28
28
parallel : true
29
29
build_script :
Original file line number Diff line number Diff line change @@ -32,6 +32,16 @@ include(CXXFeatures)
32
32
# Sort projects inside the solution
33
33
set_property (GLOBAL PROPERTY USE_FOLDERS ON )
34
34
35
+ if (${CMAKE_SYSTEM_NAME} MATCHES "Windows" )
36
+ foreach (config ${CMAKE_CONFIGURATION_TYPES} )
37
+ string (TOUPPER ${config} config)
38
+ string (REPLACE /MD /MT CMAKE_C_FLAGS_${config} "${CMAKE_C_FLAGS_${config} }" )
39
+ string (REPLACE /MD /MT CMAKE_CXX_FLAGS_${config} "${CMAKE_CXX_FLAGS_${config} }" )
40
+ endforeach ()
41
+ endif ()
42
+
43
+
44
+
35
45
36
46
# LibIGL
37
47
option (LIBIGL_USE_STATIC_LIBRARY "Use libigl as static library" OFF )
@@ -84,16 +94,6 @@ target_include_directories(pyigl PRIVATE "src/include")
84
94
# set_target_properties(pyigl PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/igl")
85
95
86
96
87
- if (${CMAKE_SYSTEM_NAME} MATCHES "Windows" )
88
- foreach (config ${CMAKE_CONFIGURATION_TYPES} )
89
- string (TOUPPER ${config} config)
90
- string (REPLACE /MD /MT CMAKE_C_FLAGS_${config} "${CMAKE_C_FLAGS_${config} }" )
91
- string (REPLACE /MD /MT CMAKE_CXX_FLAGS_${config} "${CMAKE_CXX_FLAGS_${config} }" )
92
- endforeach ()
93
- endif ()
94
-
95
-
96
-
97
97
if (${LIBIGL_PYTHON_TESTS} )
98
98
enable_testing ()
99
99
add_subdirectory (tests)
You can’t perform that action at this time.
0 commit comments