Skip to content

Commit 268d05f

Browse files
committed
Update FindNodeJS changing ICU library source download to zip format.
1 parent 2cecc1e commit 268d05f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cmake/FindNodeJS.cmake

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -318,15 +318,15 @@ if(NOT NODEJS_LIBRARY)
318318
message(STATUS "Configure NodeJS shared library")
319319

320320
# TODO: Select correct ICU version depending on NodeJS version
321-
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-60_2-src.tgz
322-
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-61_1-src.tgz
323-
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-62_1-src.tgz
324-
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-src.tgz
321+
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-60_2-src.zip
322+
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-61_1-src.zip
323+
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-62_1-src.zip
324+
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-src.zip
325325

326326
if("${CMAKE_BUILD_TYPE}" EQUAL "Debug")
327-
execute_process(COMMAND sh -c "./configure --with-icu-source=https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-src.tgz --shared --debug" WORKING_DIRECTORY "${NODEJS_OUTPUT_PATH}")
327+
execute_process(COMMAND sh -c "./configure --with-icu-source=https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-src.zip --shared --debug" WORKING_DIRECTORY "${NODEJS_OUTPUT_PATH}")
328328
else()
329-
execute_process(COMMAND sh -c "./configure --with-icu-source=https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-src.tgz --shared" WORKING_DIRECTORY "${NODEJS_OUTPUT_PATH}")
329+
execute_process(COMMAND sh -c "./configure --with-icu-source=https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-src.zip --shared" WORKING_DIRECTORY "${NODEJS_OUTPUT_PATH}")
330330
endif()
331331

332332
message(STATUS "Build NodeJS shared library")

0 commit comments

Comments
 (0)