Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
Signed-off-by: HyukWoo Park <[email protected]>
  • Loading branch information
clover2123 committed Nov 20, 2024
1 parent 8bf5a8a commit 329ddab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
DEP_LIBS=$(otool -L "$lib_file" | grep "icu" | awk '{print $1}')
for dep_lib in $DEP_LIBS; do
dep_name=$(basename "$dep_lib")
if [ ! -f "./deploy/$dep_name" ]; then
if [! -f "./deploy/$dep_name" ]; then
cp "$dep_lib" ./deploy/.
install_name_tool -add_rpath @loader_path "./deploy/$dep_name"
fi
Expand Down
3 changes: 1 addition & 2 deletions build/config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,7 @@ IF (ESCARGOT_LIBICU_SUPPORT)
PKG_CHECK_MODULES(ICU REQUIRED icu-uc icu-i18n)
ENDIF()

MESSAGE(STATUS "ICU libraries: ${ICU_LIBRARIES}")
MESSAGE(STATUS "ICU LDFLAGS: ${ICU_LDFLAGS}")
MESSAGE(STATUS "ICU Libraries: ${ICU_LIBRARIES}")
SET (ESCARGOT_LDFLAGS ${ESCARGOT_LDFLAGS} ${ICU_LDFLAGS})
SET (ESCARGOT_DEFINITIONS ${ESCARGOT_DEFINITIONS} -DENABLE_ICU -DENABLE_INTL)
SET (ESCARGOT_INCDIRS ${ESCARGOT_INCDIRS} ${ICU_INCLUDE_DIRS})
Expand Down

0 comments on commit 329ddab

Please sign in to comment.