Skip to content

Commit

Permalink
Update ICU build configuration and fix header include case sensitivity
Browse files Browse the repository at this point in the history
  • Loading branch information
royshil committed Nov 21, 2024
1 parent ec353e1 commit 2440502
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions cmake/BuildICU.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ else()
DOWNLOAD_EXTRACT_TIMESTAMP true
GIT_REPOSITORY "https://github.com/unicode-org/icu.git"
GIT_TAG "release-${ICU_VERSION_DASH}"
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env ${ICU_BUILD_ENV_VARS} <SOURCE_DIR>/icu4c/source/runConfigureICU
${ICU_PLATFORM} --prefix=<INSTALL_DIR> --enable-static --disable-shared
CONFIGURE_COMMAND
${CMAKE_COMMAND} -E env ${ICU_BUILD_ENV_VARS} <SOURCE_DIR>/icu4c/source/runConfigureICU ${ICU_PLATFORM}
--prefix=<INSTALL_DIR> --enable-static --disable-shared --disable-tools --disable-samples --disable-layout
--disable-layoutex --disable-tests --disable-draft --disable-extras --disable-icuio
BUILD_COMMAND make -j4
BUILD_BYPRODUCTS
<INSTALL_DIR>/lib/${CMAKE_STATIC_LIBRARY_PREFIX}icudata${CMAKE_STATIC_LIBRARY_SUFFIX}
Expand Down
2 changes: 1 addition & 1 deletion src/translation/cloud-translation/papago.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once
#include "iTranslator.h"
#include "ITranslator.h"
#include <memory>

class CurlHelper; // Forward declaration
Expand Down

0 comments on commit 2440502

Please sign in to comment.