File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ include(ExternalProject)
3
3
ExternalProject_Add (
4
4
ext_civetweb
5
5
PREFIX civetweb
6
- URL https://github.com/civetweb/civetweb/archive/refs/tags/v1.15 .tar.gz
7
- URL_HASH SHA256=90a533422944ab327a4fbb9969f0845d0dba05354f9cacce3a5005fa59f593b9
6
+ URL https://github.com/civetweb/civetweb/archive/refs/tags/v1.16 .tar.gz
7
+ URL_HASH SHA256=f0e471c1bf4e7804a6cfb41ea9d13e7d623b2bcc7bc1e2a4dd54951a24d60285
8
8
DOWNLOAD_DIR "${OPEN3D_THIRD_PARTY_DOWNLOAD_DIR} /civetweb"
9
9
UPDATE_COMMAND ""
10
10
CMAKE_ARGS
Original file line number Diff line number Diff line change @@ -50,7 +50,11 @@ function(open3d_fetch_ispc_compiler)
50
50
)
51
51
52
52
FetchContent_MakeAvailable (ext_ispc )
53
+ if (WIN32 )
54
+ set (CMAKE_ISPC_COMPILER "${ext_ispc_SOURCE_DIR} /bin/ispc.exe" PARENT_SCOPE )
55
+ else () # Linux
56
+ set (CMAKE_ISPC_COMPILER "${ext_ispc_SOURCE_DIR} /bin/ispc" PARENT_SCOPE )
57
+ endif ()
53
58
54
- set (CMAKE_ISPC_COMPILER "${ext_ispc_SOURCE_DIR} /bin/ispc" PARENT_SCOPE )
55
59
endif ()
56
60
endfunction ()
You can’t perform that action at this time.
0 commit comments