├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── BuildICU.cmake ├── ByproductsICU.cmake ├── PrebuiltICU.cmake └── TargetArch.cmake ├── patches └── 0023-remove-soname-version.patch └── scripts └── upload_result.sh /.gitignore: -------------------------------------------------------------------------------- 1 | cmake-build-* 2 | .idea 3 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viaduck/icu-cmake/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viaduck/icu-cmake/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viaduck/icu-cmake/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viaduck/icu-cmake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viaduck/icu-cmake/HEAD/README.md -------------------------------------------------------------------------------- /cmake/BuildICU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viaduck/icu-cmake/HEAD/cmake/BuildICU.cmake -------------------------------------------------------------------------------- /cmake/ByproductsICU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viaduck/icu-cmake/HEAD/cmake/ByproductsICU.cmake -------------------------------------------------------------------------------- /cmake/PrebuiltICU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viaduck/icu-cmake/HEAD/cmake/PrebuiltICU.cmake -------------------------------------------------------------------------------- /cmake/TargetArch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viaduck/icu-cmake/HEAD/cmake/TargetArch.cmake -------------------------------------------------------------------------------- /patches/0023-remove-soname-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viaduck/icu-cmake/HEAD/patches/0023-remove-soname-version.patch -------------------------------------------------------------------------------- /scripts/upload_result.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viaduck/icu-cmake/HEAD/scripts/upload_result.sh --------------------------------------------------------------------------------