From cf8581f338923a61176de9fc47b912e010ba6e77 Mon Sep 17 00:00:00 2001 From: Clemens Wasser Date: Sun, 14 Aug 2022 22:15:25 +0200 Subject: [PATCH 1/2] ICU-7747 CMake port --- icu4c/source/CMakeLists.txt | 50 ++++ icu4c/source/common/CMakeLists.txt | 208 +++++++++++++++ icu4c/source/data/makedata.mak | 8 +- icu4c/source/i18n/CMakeLists.txt | 246 ++++++++++++++++++ icu4c/source/io/CMakeLists.txt | 17 ++ icu4c/source/stubdata/CMakeLists.txt | 9 + icu4c/source/test/CMakeLists.txt | 8 + icu4c/source/test/cintltst/CMakeLists.txt | 96 +++++++ icu4c/source/test/compat/CMakeLists.txt | 2 + icu4c/source/test/fuzzer/CMakeLists.txt | 22 ++ icu4c/source/test/intltest/CMakeLists.txt | 176 +++++++++++++ icu4c/source/test/iotest/CMakeLists.txt | 6 + icu4c/source/test/letest/CMakeLists.txt | 15 ++ icu4c/source/test/testmap/CMakeLists.txt | 2 + icu4c/source/test/thaitest/CMakeLists.txt | 2 + icu4c/source/tools/CMakeLists.txt | 19 ++ icu4c/source/tools/ctestfw/CMakeLists.txt | 11 + icu4c/source/tools/genbrk/CMakeLists.txt | 2 + icu4c/source/tools/genccode/CMakeLists.txt | 2 + icu4c/source/tools/gencfu/CMakeLists.txt | 2 + icu4c/source/tools/gencmn/CMakeLists.txt | 2 + icu4c/source/tools/gencnval/CMakeLists.txt | 2 + icu4c/source/tools/gendict/CMakeLists.txt | 2 + icu4c/source/tools/gennorm2/CMakeLists.txt | 7 + icu4c/source/tools/genrb/CMakeLists.txt | 18 ++ icu4c/source/tools/gensprep/CMakeLists.txt | 2 + icu4c/source/tools/gentest/CMakeLists.txt | 2 + .../source/tools/icuexportdata/CMakeLists.txt | 2 + icu4c/source/tools/icuinfo/CMakeLists.txt | 5 + icu4c/source/tools/icupkg/CMakeLists.txt | 2 + icu4c/source/tools/icuswap/CMakeLists.txt | 2 + icu4c/source/tools/makeconv/CMakeLists.txt | 2 + icu4c/source/tools/pkgdata/CMakeLists.txt | 19 ++ icu4c/source/tools/toolutil/CMakeLists.txt | 29 +++ icu4c/source/tools/tzcode/CMakeLists.txt | 3 + 35 files changed, 1001 insertions(+), 1 deletion(-) create mode 100644 icu4c/source/CMakeLists.txt create mode 100644 icu4c/source/common/CMakeLists.txt create mode 100644 icu4c/source/i18n/CMakeLists.txt create mode 100644 icu4c/source/io/CMakeLists.txt create mode 100644 icu4c/source/stubdata/CMakeLists.txt create mode 100644 icu4c/source/test/CMakeLists.txt create mode 100644 icu4c/source/test/cintltst/CMakeLists.txt create mode 100644 icu4c/source/test/compat/CMakeLists.txt create mode 100644 icu4c/source/test/fuzzer/CMakeLists.txt create mode 100644 icu4c/source/test/intltest/CMakeLists.txt create mode 100644 icu4c/source/test/iotest/CMakeLists.txt create mode 100644 icu4c/source/test/letest/CMakeLists.txt create mode 100644 icu4c/source/test/testmap/CMakeLists.txt create mode 100644 icu4c/source/test/thaitest/CMakeLists.txt create mode 100644 icu4c/source/tools/CMakeLists.txt create mode 100644 icu4c/source/tools/ctestfw/CMakeLists.txt create mode 100644 icu4c/source/tools/genbrk/CMakeLists.txt create mode 100644 icu4c/source/tools/genccode/CMakeLists.txt create mode 100644 icu4c/source/tools/gencfu/CMakeLists.txt create mode 100644 icu4c/source/tools/gencmn/CMakeLists.txt create mode 100644 icu4c/source/tools/gencnval/CMakeLists.txt create mode 100644 icu4c/source/tools/gendict/CMakeLists.txt create mode 100644 icu4c/source/tools/gennorm2/CMakeLists.txt create mode 100644 icu4c/source/tools/genrb/CMakeLists.txt create mode 100644 icu4c/source/tools/gensprep/CMakeLists.txt create mode 100644 icu4c/source/tools/gentest/CMakeLists.txt create mode 100644 icu4c/source/tools/icuexportdata/CMakeLists.txt create mode 100644 icu4c/source/tools/icuinfo/CMakeLists.txt create mode 100644 icu4c/source/tools/icupkg/CMakeLists.txt create mode 100644 icu4c/source/tools/icuswap/CMakeLists.txt create mode 100644 icu4c/source/tools/makeconv/CMakeLists.txt create mode 100644 icu4c/source/tools/pkgdata/CMakeLists.txt create mode 100644 icu4c/source/tools/toolutil/CMakeLists.txt create mode 100644 icu4c/source/tools/tzcode/CMakeLists.txt diff --git a/icu4c/source/CMakeLists.txt b/icu4c/source/CMakeLists.txt new file mode 100644 index 00000000000..d5a3e815873 --- /dev/null +++ b/icu4c/source/CMakeLists.txt @@ -0,0 +1,50 @@ +cmake_minimum_required(VERSION 3.16) + +project(icu4c) + +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) + +add_library(icu_defaults INTERFACE) +target_compile_definitions(icu_defaults INTERFACE U_ATTRIBUTE_DEPRECATED=) + +if(WIN32) + target_compile_definitions(icu_defaults INTERFACE + $<$>:U_STATIC_IMPLEMENTATION> + WIN64 + WIN32 + WINVER=0x0601 + _WIN32_WINNT=0x0601 + _CRT_SECURE_NO_DEPRECATE + _MBCS + _HAS_EXCEPTIONS=0 + $<$:_DEBUG>) +else() + target_compile_definitions(icu_defaults INTERFACE + _REENTRANT U_HAVE_ELF_H=1 U_HAVE_STRTOD_L=1 U_HAVE_XLOCALE_H=0) +endif() + +if(MSVC) + target_compile_options(icu_defaults INTERFACE /utf-8) +endif() + +add_library(icu_lib_defaults INTERFACE) +target_link_libraries(icu_lib_defaults INTERFACE icu_defaults) + +if(WIN32) + target_compile_definitions(icu_lib_defaults INTERFACE _HAS_EXCEPTIONS=0) +endif() + +add_subdirectory(common) +add_subdirectory(i18n) +add_subdirectory(io) +add_subdirectory(tools) +add_subdirectory(stubdata) + +include(CTest) + +if(BUILD_TESTING) + add_test(NAME icuinfo COMMAND icuinfo WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + add_subdirectory(test) +endif() diff --git a/icu4c/source/common/CMakeLists.txt b/icu4c/source/common/CMakeLists.txt new file mode 100644 index 00000000000..caf885a92fb --- /dev/null +++ b/icu4c/source/common/CMakeLists.txt @@ -0,0 +1,208 @@ +add_library(icuuc) +target_link_libraries(icuuc PRIVATE icu_defaults icu_lib_defaults icudt) +target_include_directories(icuuc PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) +target_compile_definitions(icuuc PRIVATE U_COMMON_IMPLEMENTATION) + +if(WIN32) + target_compile_definitions(icuuc PRIVATE $<$:RBBI_DEBUG> U_PLATFORM_USES_ONLY_WIN32_API=1) +endif() + +target_sources(icuuc PRIVATE + appendable.cpp + bmpset.cpp + brkeng.cpp + brkiter.cpp + bytesinkutil.cpp + bytestream.cpp + bytestrie.cpp + bytestriebuilder.cpp + bytestrieiterator.cpp + caniter.cpp + characterproperties.cpp + chariter.cpp + charstr.cpp + cmemory.cpp + cstr.cpp + cstring.cpp + cwchar.cpp + dictbe.cpp + dictionarydata.cpp + dtintrv.cpp + edits.cpp + emojiprops.cpp + errorcode.cpp + filteredbrk.cpp + filterednormalizer2.cpp + icudataver.cpp + icuplug.cpp + loadednormalizer2impl.cpp + localebuilder.cpp + localematcher.cpp + localeprioritylist.cpp + locavailable.cpp + locbased.cpp + locdispnames.cpp + locdistance.cpp + locdspnm.cpp + locid.cpp + loclikely.cpp + loclikelysubtags.cpp + locmap.cpp + locresdata.cpp + locutil.cpp + lsr.cpp + lstmbe.cpp + messagepattern.cpp + normalizer2.cpp + normalizer2impl.cpp + normlzr.cpp + parsepos.cpp + patternprops.cpp + pluralmap.cpp + propname.cpp + propsvec.cpp + punycode.cpp + putil.cpp + rbbi.cpp + rbbi_cache.cpp + rbbidata.cpp + rbbinode.cpp + rbbirb.cpp + rbbiscan.cpp + rbbisetb.cpp + rbbistbl.cpp + rbbitblb.cpp + resbund.cpp + resbund_cnv.cpp + resource.cpp + restrace.cpp + ruleiter.cpp + schriter.cpp + serv.cpp + servlk.cpp + servlkf.cpp + servls.cpp + servnotf.cpp + servrbf.cpp + servslkf.cpp + sharedobject.cpp + simpleformatter.cpp + static_unicode_sets.cpp + stringpiece.cpp + stringtriebuilder.cpp + uarrsort.cpp + ubidi.cpp + ubidi_props.cpp + ubidiln.cpp + ubiditransform.cpp + ubidiwrt.cpp + ubrk.cpp + ucase.cpp + ucasemap.cpp + ucasemap_titlecase_brkiter.cpp + ucat.cpp + uchar.cpp + ucharstrie.cpp + ucharstriebuilder.cpp + ucharstrieiterator.cpp + uchriter.cpp + ucln_cmn.cpp + ucmndata.cpp + ucnv.cpp + ucnv2022.cpp + ucnv_bld.cpp + ucnv_cb.cpp + ucnv_cnv.cpp + ucnv_ct.cpp + ucnv_err.cpp + ucnv_ext.cpp + ucnv_io.cpp + ucnv_lmb.cpp + ucnv_set.cpp + ucnv_u16.cpp + ucnv_u32.cpp + ucnv_u7.cpp + ucnv_u8.cpp + ucnvbocu.cpp + ucnvdisp.cpp + ucnvhz.cpp + ucnvisci.cpp + ucnvlat1.cpp + ucnvmbcs.cpp + ucnvscsu.cpp + ucnvsel.cpp + ucol_swp.cpp + ucptrie.cpp + ucurr.cpp + udata.cpp + udatamem.cpp + udataswp.cpp + uenum.cpp + uhash.cpp + uhash_us.cpp + uidna.cpp + uinit.cpp + uinvchar.cpp + uiter.cpp + ulist.cpp + uloc.cpp + uloc_keytype.cpp + uloc_tag.cpp + umapfile.cpp + umath.cpp + umutablecptrie.cpp + umutex.cpp + unames.cpp + unifiedcache.cpp + unifilt.cpp + unifunct.cpp + uniset.cpp + uniset_closure.cpp + uniset_props.cpp + unisetspan.cpp + unistr.cpp + unistr_case.cpp + unistr_case_locale.cpp + unistr_cnv.cpp + unistr_props.cpp + unistr_titlecase_brkiter.cpp + unorm.cpp + unormcmp.cpp + uobject.cpp + uprops.cpp + ures_cnv.cpp + uresbund.cpp + uresdata.cpp + usc_impl.cpp + uscript.cpp + uscript_props.cpp + uset.cpp + uset_props.cpp + usetiter.cpp + ushape.cpp + usprep.cpp + ustack.cpp + ustr_cnv.cpp + ustr_titlecase_brkiter.cpp + ustr_wcs.cpp + ustrcase.cpp + ustrcase_locale.cpp + ustrenum.cpp + ustrfmt.cpp + ustring.cpp + ustrtrns.cpp + utext.cpp + utf_impl.cpp + util.cpp + util_props.cpp + utrace.cpp + utrie.cpp + utrie2.cpp + utrie2_builder.cpp + utrie_swap.cpp + uts46.cpp + utypes.cpp + uvector.cpp + uvectr32.cpp + uvectr64.cpp + wintz.cpp) \ No newline at end of file diff --git a/icu4c/source/data/makedata.mak b/icu4c/source/data/makedata.mak index a86182fd931..90bfd084cf7 100644 --- a/icu4c/source/data/makedata.mak +++ b/icu4c/source/data/makedata.mak @@ -284,7 +284,13 @@ ICU_DATA_BUILD_VERBOSE= # Three main targets: tools, core data, and test data. # Keep track of whether they are built via timestamp files. -$(TOOLS_TS): "$(ICUTOOLS)\genrb\$(CFGTOOLS)\genrb.exe" "$(ICUTOOLS)\gencnval\$(CFGTOOLS)\gencnval.exe" "$(ICUTOOLS)\gencfu\$(CFGTOOLS)\gencfu.exe" "$(ICUTOOLS)\icupkg\$(CFGTOOLS)\icupkg.exe" "$(ICUTOOLS)\makeconv\$(CFGTOOLS)\makeconv.exe" "$(ICUPBIN)\pkgdata.exe" +GENRB_DIR=$(ICUTOOLS)\genrb\$(CFGTOOLS) +GENCNVAL_DIR=$(ICUTOOLS)\gencnval\$(CFGTOOLS) +GENCFU_DIR=$(ICUTOOLS)\gencfu\$(CFGTOOLS) +ICUPKG_DIR=$(ICUTOOLS)\icupkg\$(CFGTOOLS) +MAKECONV_DIR=$(ICUTOOLS)\makeconv\$(CFGTOOLS) + +$(TOOLS_TS): "$(GENRB_DIR)\genrb.exe" "$(GENCNVAL_DIR)\gencnval.exe" "$(GENCFU_DIR)\gencfu.exe" "$(ICUPKG_DIR)\icupkg.exe" "$(MAKECONV_DIR)\makeconv.exe" "$(ICUPBIN)\pkgdata.exe" @echo "timestamp" > $(TOOLS_TS) # On Unix, Python generates at configure time a list of Makefile rules. diff --git a/icu4c/source/i18n/CMakeLists.txt b/icu4c/source/i18n/CMakeLists.txt new file mode 100644 index 00000000000..21daff7965d --- /dev/null +++ b/icu4c/source/i18n/CMakeLists.txt @@ -0,0 +1,246 @@ +add_library(icui18n) +target_link_libraries(icui18n PRIVATE icu_lib_defaults icuuc) +target_compile_definitions(icui18n PRIVATE U_I18N_IMPLEMENTATION) +target_include_directories(icui18n PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) +target_sources(icui18n PRIVATE + alphaindex.cpp + anytrans.cpp + astro.cpp + basictz.cpp + bocsu.cpp + brktrans.cpp + buddhcal.cpp + calendar.cpp + casetrn.cpp + cecal.cpp + chnsecal.cpp + choicfmt.cpp + coleitr.cpp + coll.cpp + collation.cpp + collationbuilder.cpp + collationcompare.cpp + collationdata.cpp + collationdatabuilder.cpp + collationdatareader.cpp + collationdatawriter.cpp + collationfastlatin.cpp + collationfastlatinbuilder.cpp + collationfcd.cpp + collationiterator.cpp + collationkeys.cpp + collationroot.cpp + collationrootelements.cpp + collationruleparser.cpp + collationsets.cpp + collationsettings.cpp + collationtailoring.cpp + collationweights.cpp + compactdecimalformat.cpp + coptccal.cpp + cpdtrans.cpp + csdetect.cpp + csmatch.cpp + csr2022.cpp + csrecog.cpp + csrmbcs.cpp + csrsbcs.cpp + csrucode.cpp + csrutf8.cpp + curramt.cpp + currfmt.cpp + currpinf.cpp + currunit.cpp + dangical.cpp + datefmt.cpp + dayperiodrules.cpp + dcfmtsym.cpp + decContext.cpp + decNumber.cpp + decimfmt.cpp + displayoptions.cpp + double-conversion-bignum-dtoa.cpp + double-conversion-bignum.cpp + double-conversion-cached-powers.cpp + double-conversion-double-to-string.cpp + double-conversion-fast-dtoa.cpp + double-conversion-string-to-double.cpp + double-conversion-strtod.cpp + dtfmtsym.cpp + dtitvfmt.cpp + dtitvinf.cpp + dtptngen.cpp + dtrule.cpp + erarules.cpp + esctrn.cpp + ethpccal.cpp + fmtable.cpp + fmtable_cnv.cpp + format.cpp + formatted_string_builder.cpp + formattedval_iterimpl.cpp + formattedval_sbimpl.cpp + formattedvalue.cpp + fphdlimp.cpp + fpositer.cpp + funcrepl.cpp + gender.cpp + gregocal.cpp + gregoimp.cpp + hebrwcal.cpp + indiancal.cpp + inputext.cpp + islamcal.cpp + japancal.cpp + listformatter.cpp + measfmt.cpp + measunit.cpp + measunit_extra.cpp + measure.cpp + msgfmt.cpp + name2uni.cpp + nfrs.cpp + nfrule.cpp + nfsubs.cpp + nortrans.cpp + nultrans.cpp + number_affixutils.cpp + number_asformat.cpp + number_capi.cpp + number_compact.cpp + number_currencysymbols.cpp + number_decimalquantity.cpp + number_decimfmtprops.cpp + number_fluent.cpp + number_formatimpl.cpp + number_grouping.cpp + number_integerwidth.cpp + number_longnames.cpp + number_mapper.cpp + number_modifiers.cpp + number_multiplier.cpp + number_notation.cpp + number_output.cpp + number_padding.cpp + number_patternmodifier.cpp + number_patternstring.cpp + number_rounding.cpp + number_scientific.cpp + number_skeletons.cpp + number_symbolswrapper.cpp + number_usageprefs.cpp + number_utils.cpp + numfmt.cpp + numparse_affixes.cpp + numparse_compositions.cpp + numparse_currency.cpp + numparse_decimal.cpp + numparse_impl.cpp + numparse_parsednumber.cpp + numparse_scientific.cpp + numparse_symbols.cpp + numparse_validators.cpp + numrange_capi.cpp + numrange_fluent.cpp + numrange_impl.cpp + numsys.cpp + olsontz.cpp + persncal.cpp + pluralranges.cpp + plurfmt.cpp + plurrule.cpp + quant.cpp + quantityformatter.cpp + rbnf.cpp + rbt.cpp + rbt_data.cpp + rbt_pars.cpp + rbt_rule.cpp + rbt_set.cpp + rbtz.cpp + regexcmp.cpp + regeximp.cpp + regexst.cpp + regextxt.cpp + region.cpp + reldatefmt.cpp + reldtfmt.cpp + rematch.cpp + remtrans.cpp + repattrn.cpp + rulebasedcollator.cpp + scientificnumberformatter.cpp + scriptset.cpp + search.cpp + selfmt.cpp + sharedbreakiterator.cpp + simpletz.cpp + smpdtfmt.cpp + smpdtfst.cpp + sortkey.cpp + standardplural.cpp + string_segment.cpp + strmatch.cpp + strrepl.cpp + stsearch.cpp + taiwncal.cpp + timezone.cpp + titletrn.cpp + tmunit.cpp + tmutamt.cpp + tmutfmt.cpp + tolowtrn.cpp + toupptrn.cpp + translit.cpp + transreg.cpp + tridpars.cpp + tzfmt.cpp + tzgnames.cpp + tznames.cpp + tznames_impl.cpp + tzrule.cpp + tztrans.cpp + ucal.cpp + ucln_in.cpp + ucol.cpp + ucol_res.cpp + ucol_sit.cpp + ucoleitr.cpp + ucsdet.cpp + udat.cpp + udateintervalformat.cpp + udatpg.cpp + ufieldpositer.cpp + uitercollationiterator.cpp + ulistformatter.cpp + ulocdata.cpp + umsg.cpp + unesctrn.cpp + uni2name.cpp + units_data.cpp + units_complexconverter.cpp + units_converter.cpp + units_router.cpp + unum.cpp + unumsys.cpp + upluralrules.cpp + uregex.cpp + uregexc.cpp + uregion.cpp + usearch.cpp + uspoof.cpp + uspoof_build.cpp + uspoof_conf.cpp + uspoof_impl.cpp + utf16collationiterator.cpp + utf8collationiterator.cpp + utmscale.cpp + utrans.cpp + vtzone.cpp + vzone.cpp + windtfmt.cpp + winnmfmt.cpp + wintzimpl.cpp + zonemeta.cpp + zrule.cpp + ztrans.cpp) diff --git a/icu4c/source/io/CMakeLists.txt b/icu4c/source/io/CMakeLists.txt new file mode 100644 index 00000000000..50744648beb --- /dev/null +++ b/icu4c/source/io/CMakeLists.txt @@ -0,0 +1,17 @@ +add_library(icuio) +target_link_libraries(icuio PRIVATE icu_lib_defaults icuuc icui18n) +target_compile_definitions(icuio PRIVATE U_IO_IMPLEMENTATION) +target_include_directories(icuio PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) +target_sources(icuio PRIVATE + locbund.cpp + sprintf.cpp + sscanf.cpp + ucln_io.cpp + ufile.cpp + ufmt_cmn.cpp + uprintf.cpp + uprntf_p.cpp + uscanf.cpp + uscanf_p.cpp + ustdio.cpp + ustream.cpp) diff --git a/icu4c/source/stubdata/CMakeLists.txt b/icu4c/source/stubdata/CMakeLists.txt new file mode 100644 index 00000000000..328fd0158a3 --- /dev/null +++ b/icu4c/source/stubdata/CMakeLists.txt @@ -0,0 +1,9 @@ +add_library(icudt stubdata.cpp) +target_link_libraries(icudt PRIVATE icu_lib_defaults icuuc) +target_compile_definitions(icudt PRIVATE U_COMMON_IMPLEMENTATION) + +add_custom_command( + TARGET icudt POST_BUILD + COMMAND ${CMAKE_COMMAND} -E echo "File with stubdata build time, used as a dependency to trigger fresh data build, since stubdata dll will overwrite the real one." > "${CMAKE_CURRENT_LIST_DIR}/stubdatabuilt.txt" + WORKING_DIRECTORY ${icu4c_SOURCE_DIR}/extra/uconv + VERBATIM) diff --git a/icu4c/source/test/CMakeLists.txt b/icu4c/source/test/CMakeLists.txt new file mode 100644 index 00000000000..d27fe462aa2 --- /dev/null +++ b/icu4c/source/test/CMakeLists.txt @@ -0,0 +1,8 @@ +add_subdirectory(cintltst) +add_subdirectory(compat) +add_subdirectory(fuzzer) +add_subdirectory(intltest) +add_subdirectory(iotest) +#add_subdirectory(letest) +add_subdirectory(testmap) +#add_subdirectory(thaitest) \ No newline at end of file diff --git a/icu4c/source/test/cintltst/CMakeLists.txt b/icu4c/source/test/cintltst/CMakeLists.txt new file mode 100644 index 00000000000..359f3005a65 --- /dev/null +++ b/icu4c/source/test/cintltst/CMakeLists.txt @@ -0,0 +1,96 @@ +add_executable(cintltst) +target_link_libraries(cintltst PRIVATE icu_defaults icuuc ctestfw icui18n toolutil) + +if(BUILD_TESTING) + add_test(NAME cintltst COMMAND cintltst WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) +endif() + +target_sources(cintltst PRIVATE + bocu1tst.c + callcoll.c + calltest.c + capitst.c + cbiapts.c + cbididat.c + cbiditransformtst.c + cbiditst.c + cbkittst.c + ccaltst.c + ccapitst.c + ccolltst.c + cconvtst.c + cctest.c + ccurrtst.c + cdateintervalformattest.c + cdattst.c + cdetst.c + cdtdptst.c + cdtrgtst.c + cestst.c + cfintst.c + cformtst.c + cfrtst.c + cg7coll.c + cgendtst.c + chashtst.c + cintltst.c + citertst.c + cjaptst.c + cldrtest.c + cloctst.c + cmsccoll.c + cmsgtst.c + cnmdptst.c + cnormtst.c + cnumtst.c + cpluralrulestest.c + cposxtst.c + crelativedateformattest.c + crestst.c + creststn.c + cstrcase.c + cstrtest.c + cturtst.c + cucdapi.c + cucdtst.c + currtest.c + custrtrn.c + custrtst.c + cutiltst.c + encoll.c + eurocreg.c + hpmufn.c + idnatest.c + nccbtst.c + ncnvfbts.c + ncnvtst.c + nfsprep.c + nucnvtst.c + putiltst.c + reapits.c + sorttest.c + spooftest.c + spreptst.c + sprpdata.c + stdnmtst.c + tracetst.c + trie2test.c + trietest.c + ucnvseltst.c + ucptrietest.c + ucsdetst.c + udatatst.c + udatpg_test.c + uenumtst.c + uformattedvaluetst.c + ulistfmttest.c + unumberformattertst.c + unumberrangeformattertst.c + uregiontest.c + usettest.c + usrchtst.c + utexttst.c + utf16tst.c + utf8tst.c + utmstest.c + utransts.c) \ No newline at end of file diff --git a/icu4c/source/test/compat/CMakeLists.txt b/icu4c/source/test/compat/CMakeLists.txt new file mode 100644 index 00000000000..d07b0ab7aa3 --- /dev/null +++ b/icu4c/source/test/compat/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(compat tzdate.c) +target_link_libraries(compat PRIVATE icu_defaults icuuc icui18n) \ No newline at end of file diff --git a/icu4c/source/test/fuzzer/CMakeLists.txt b/icu4c/source/test/fuzzer/CMakeLists.txt new file mode 100644 index 00000000000..fe42bc4f74f --- /dev/null +++ b/icu4c/source/test/fuzzer/CMakeLists.txt @@ -0,0 +1,22 @@ +add_library(fuzzer fuzzer_driver.cpp locale_util.cpp) +target_link_libraries(fuzzer PRIVATE icu_defaults icuuc) + +function(add_fuzzer fuzzer_name) + add_executable(${fuzzer_name} ${fuzzer_name}.cpp) + target_link_libraries(${fuzzer_name} PRIVATE icu_defaults icuuc icui18n fuzzer) +endfunction() + +add_fuzzer(break_iterator_fuzzer) +add_fuzzer(collator_compare_fuzzer) +add_fuzzer(collator_rulebased_fuzzer) +add_fuzzer(converter_fuzzer) +add_fuzzer(locale_fuzzer) +add_fuzzer(number_format_fuzzer) +add_fuzzer(ucasemap_fuzzer) +add_fuzzer(uloc_canonicalize_fuzzer) +add_fuzzer(uloc_for_language_tag_fuzzer) +add_fuzzer(uloc_get_name_fuzzer) +add_fuzzer(uloc_is_right_to_left_fuzzer) +add_fuzzer(uloc_open_keywords_fuzzer) +add_fuzzer(unicode_string_codepage_create_fuzzer) +add_fuzzer(uregex_open_fuzzer) \ No newline at end of file diff --git a/icu4c/source/test/intltest/CMakeLists.txt b/icu4c/source/test/intltest/CMakeLists.txt new file mode 100644 index 00000000000..06f87e4564d --- /dev/null +++ b/icu4c/source/test/intltest/CMakeLists.txt @@ -0,0 +1,176 @@ +add_executable(intltest) +target_link_libraries(intltest PRIVATE icu_defaults ctestfw icuuc icui18n toolutil) + +if(BUILD_TESTING) + add_test(NAME intltest COMMAND intltest WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) +endif() + +target_sources(intltest PRIVATE + aliastst.cpp + allcoll.cpp + alphaindextst.cpp + apicoll.cpp + astrotst.cpp + bidiconf.cpp + bytestrietest.cpp + calcasts.cpp + callimts.cpp + calregts.cpp + caltest.cpp + caltztst.cpp + canittst.cpp + citrtest.cpp + collationtest.cpp + colldata.cpp + compactdecimalformattest.cpp + convtest.cpp + cpdtrtst.cpp + csdetest.cpp + currcoll.cpp + dadrcal.cpp + dadrfmt.cpp + datadrivennumberformattestsuite.cpp + dcfmapts.cpp + dcfmtest.cpp + decoll.cpp + displayoptions_test.cpp + dtfmapts.cpp + dtfmrgts.cpp + dtfmtrtts.cpp + dtfmttst.cpp + dtifmtts.cpp + dtptngts.cpp + encoll.cpp + erarulestest.cpp + escoll.cpp + ficoll.cpp + fldset.cpp + formatted_string_builder_test.cpp + formattedvaluetest.cpp + frcoll.cpp + g7coll.cpp + genderinfotest.cpp + icusvtst.cpp + idnaconf.cpp + idnaref.cpp + incaltst.cpp + intltest.cpp + itercoll.cpp + itformat.cpp + itmajor.cpp + itrbbi.cpp + itrbnf.cpp + itrbnfp.cpp + itrbnfrt.cpp + itspoof.cpp + ittrans.cpp + itutil.cpp + jacoll.cpp + jamotest.cpp + lcukocol.cpp + listformattertest.cpp + localebuildertest.cpp + localematchertest.cpp + locnmtst.cpp + loctest.cpp + lstmbetst.cpp + measfmttest.cpp + miscdtfm.cpp + mnkytst.cpp + msfmrgts.cpp + nmfmapts.cpp + nmfmtrt.cpp + normconf.cpp + nptrans.cpp + numberformattesttuple.cpp + numbertest_affixutils.cpp + numbertest_api.cpp + numbertest_decimalquantity.cpp + numbertest_doubleconversion.cpp + numbertest_modifiers.cpp + numbertest_parse.cpp + numbertest_patternmodifier.cpp + numbertest_patternstring.cpp + numbertest_permutation.cpp + numbertest_range.cpp + numbertest_skeletons.cpp + numfmtdatadriventest.cpp + numfmtspectest.cpp + numfmtst.cpp + numrgts.cpp + pluralmaptest.cpp + plurfmts.cpp + plurults.cpp + pptest.cpp + punyref.cpp + quantityformattertest.cpp + rbbiapts.cpp + rbbimonkeytest.cpp + rbbitst.cpp + regcoll.cpp + regextst.cpp + regiontst.cpp + reldatefmttest.cpp + reptest.cpp + restest.cpp + restsnew.cpp + scientificnumberformattertest.cpp + sdtfmtts.cpp + selfmts.cpp + sfwdchit.cpp + simpleformattertest.cpp + simplethread.cpp + srchtest.cpp + ssearch.cpp + static_unisets_test.cpp + strcase.cpp + string_segment_test.cpp + strtest.cpp + svccoll.cpp + tchcfmt.cpp + testidn.cpp + testidna.cpp + testutil.cpp + textfile.cpp + tfsmalls.cpp + thcoll.cpp + tmsgfmt.cpp + tokiter.cpp + transapi.cpp + transrt.cpp + transtst.cpp + trcoll.cpp + trnserr.cpp + tscoll.cpp + tsdate.cpp + tsdcfmsy.cpp + tsdtfmsy.cpp + tsmthred.cpp + tsnmfmt.cpp + tsputil.cpp + tstnorm.cpp + tstnrapi.cpp + tufmtts.cpp + tzbdtest.cpp + tzfmttst.cpp + tzoffloc.cpp + tzregts.cpp + tzrulets.cpp + tztest.cpp + ucaconf.cpp + ucdtest.cpp + ucharstrietest.cpp + unifiedcachetest.cpp + units_data_test.cpp + units_router_test.cpp + units_test.cpp + uobjtest.cpp + usettest.cpp + ustrtest.cpp + uts46test.cpp + utxttest.cpp + uvectest.cpp + v32test.cpp + windttst.cpp + winnmtst.cpp + winutil.cpp) \ No newline at end of file diff --git a/icu4c/source/test/iotest/CMakeLists.txt b/icu4c/source/test/iotest/CMakeLists.txt new file mode 100644 index 00000000000..8ac69728b88 --- /dev/null +++ b/icu4c/source/test/iotest/CMakeLists.txt @@ -0,0 +1,6 @@ +add_executable(iotest filetst.c iotest.cpp stream.cpp strtst.c trnstst.c) +target_link_libraries(iotest icu_defaults icuuc ctestfw icuio icui18n) + +if(BUILD_TESTING) + add_test(NAME iotest COMMAND iotest WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) +endif() diff --git a/icu4c/source/test/letest/CMakeLists.txt b/icu4c/source/test/letest/CMakeLists.txt new file mode 100644 index 00000000000..15e60f9ea4b --- /dev/null +++ b/icu4c/source/test/letest/CMakeLists.txt @@ -0,0 +1,15 @@ +add_executable(letest) +target_link_libraries(letest icu_defaults) +target_sources(letest PRIVATE + FontObject.cpp + FontTableCache.cpp + PortableFontInstance.cpp + SimpleFontInstance.cpp + cfonts.cpp + cletest.c + cmaps.cpp + gendata.cpp + letest.cpp + letsutil.cpp + testdata.cpp + xmlreader.cpp) \ No newline at end of file diff --git a/icu4c/source/test/testmap/CMakeLists.txt b/icu4c/source/test/testmap/CMakeLists.txt new file mode 100644 index 00000000000..0e6b030a5b5 --- /dev/null +++ b/icu4c/source/test/testmap/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(testmap testmap.c) +target_link_libraries(testmap icu_defaults icuuc) \ No newline at end of file diff --git a/icu4c/source/test/thaitest/CMakeLists.txt b/icu4c/source/test/thaitest/CMakeLists.txt new file mode 100644 index 00000000000..1b1d410b4cf --- /dev/null +++ b/icu4c/source/test/thaitest/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(thaitest thaitest.cpp) +target_link_libraries(thaitest icu_defaults) \ No newline at end of file diff --git a/icu4c/source/tools/CMakeLists.txt b/icu4c/source/tools/CMakeLists.txt new file mode 100644 index 00000000000..97d2339448e --- /dev/null +++ b/icu4c/source/tools/CMakeLists.txt @@ -0,0 +1,19 @@ +add_subdirectory(ctestfw) +add_subdirectory(genbrk) +add_subdirectory(genccode) +add_subdirectory(gencfu) +add_subdirectory(gencmn) +add_subdirectory(gencnval) +add_subdirectory(gendict) +add_subdirectory(gennorm2) +add_subdirectory(genrb) +add_subdirectory(gensprep) +add_subdirectory(gentest) +add_subdirectory(icuexportdata) +add_subdirectory(icuinfo) +add_subdirectory(icupkg) +add_subdirectory(icuswap) +add_subdirectory(makeconv) +add_subdirectory(pkgdata) +add_subdirectory(toolutil) +add_subdirectory(tzcode) \ No newline at end of file diff --git a/icu4c/source/tools/ctestfw/CMakeLists.txt b/icu4c/source/tools/ctestfw/CMakeLists.txt new file mode 100644 index 00000000000..bedfac795d3 --- /dev/null +++ b/icu4c/source/tools/ctestfw/CMakeLists.txt @@ -0,0 +1,11 @@ +add_library(ctestfw) +target_link_libraries(ctestfw PRIVATE icu_defaults icuuc toolutil) +target_include_directories(ctestfw PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) +target_compile_definitions(ctestfw PRIVATE T_CTEST_IMPLEMENTATION) +target_sources(ctestfw PRIVATE + ctest.c + datamap.cpp + testdata.cpp + tstdtmod.cpp + ucln_ct.c + uperf.cpp) \ No newline at end of file diff --git a/icu4c/source/tools/genbrk/CMakeLists.txt b/icu4c/source/tools/genbrk/CMakeLists.txt new file mode 100644 index 00000000000..f92e4a82e0a --- /dev/null +++ b/icu4c/source/tools/genbrk/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(genbrk genbrk.cpp) +target_link_libraries(genbrk PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/genccode/CMakeLists.txt b/icu4c/source/tools/genccode/CMakeLists.txt new file mode 100644 index 00000000000..e9e7c390cdc --- /dev/null +++ b/icu4c/source/tools/genccode/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(genccode genccode.c) +target_link_libraries(genccode PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/gencfu/CMakeLists.txt b/icu4c/source/tools/gencfu/CMakeLists.txt new file mode 100644 index 00000000000..c6a1e408743 --- /dev/null +++ b/icu4c/source/tools/gencfu/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(gencfu gencfu.cpp) +target_link_libraries(gencfu PRIVATE icu_defaults icuuc toolutil icui18n) \ No newline at end of file diff --git a/icu4c/source/tools/gencmn/CMakeLists.txt b/icu4c/source/tools/gencmn/CMakeLists.txt new file mode 100644 index 00000000000..beeb04a76fc --- /dev/null +++ b/icu4c/source/tools/gencmn/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(gencmn gencmn.c) +target_link_libraries(gencmn PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/gencnval/CMakeLists.txt b/icu4c/source/tools/gencnval/CMakeLists.txt new file mode 100644 index 00000000000..aa1f99d03f7 --- /dev/null +++ b/icu4c/source/tools/gencnval/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(gencnval gencnval.c) +target_link_libraries(gencnval PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/gendict/CMakeLists.txt b/icu4c/source/tools/gendict/CMakeLists.txt new file mode 100644 index 00000000000..7acb1aaebd9 --- /dev/null +++ b/icu4c/source/tools/gendict/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(gendict gendict.cpp) +target_link_libraries(gendict PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/gennorm2/CMakeLists.txt b/icu4c/source/tools/gennorm2/CMakeLists.txt new file mode 100644 index 00000000000..d1f9f9a6a89 --- /dev/null +++ b/icu4c/source/tools/gennorm2/CMakeLists.txt @@ -0,0 +1,7 @@ +add_executable(gennorm2) +target_link_libraries(gennorm2 PRIVATE icu_defaults icuuc toolutil) +target_sources(gennorm2 PRIVATE + extradata.cpp + gennorm2.cpp + n2builder.cpp + norms.cpp) \ No newline at end of file diff --git a/icu4c/source/tools/genrb/CMakeLists.txt b/icu4c/source/tools/genrb/CMakeLists.txt new file mode 100644 index 00000000000..e0c8c59b1be --- /dev/null +++ b/icu4c/source/tools/genrb/CMakeLists.txt @@ -0,0 +1,18 @@ +add_executable(genrb) +target_link_libraries(genrb PRIVATE icu_defaults icuuc toolutil icui18n) +target_sources(genrb PRIVATE + errmsg.c + filterrb.cpp + genrb.cpp + parse.cpp + prscmnts.cpp + rbutil.c + read.c + reslist.cpp + rle.c + ustr.c + wrtjava.cpp + wrtxml.cpp) + +add_executable(derb derb.cpp) +target_link_libraries(derb PRIVATE icu_defaults icuuc toolutil icuio icui18n) \ No newline at end of file diff --git a/icu4c/source/tools/gensprep/CMakeLists.txt b/icu4c/source/tools/gensprep/CMakeLists.txt new file mode 100644 index 00000000000..83bf9f23ab1 --- /dev/null +++ b/icu4c/source/tools/gensprep/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(gensprep gensprep.c store.c) +target_link_libraries(gensprep PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/gentest/CMakeLists.txt b/icu4c/source/tools/gentest/CMakeLists.txt new file mode 100644 index 00000000000..d609a4084e5 --- /dev/null +++ b/icu4c/source/tools/gentest/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(gentest gentest.c genres32.c) +target_link_libraries(gentest PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/icuexportdata/CMakeLists.txt b/icu4c/source/tools/icuexportdata/CMakeLists.txt new file mode 100644 index 00000000000..ee8518506b5 --- /dev/null +++ b/icu4c/source/tools/icuexportdata/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(icuexportdata icuexportdata.cpp) +target_link_libraries(icuexportdata PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/icuinfo/CMakeLists.txt b/icu4c/source/tools/icuinfo/CMakeLists.txt new file mode 100644 index 00000000000..5118e6990f4 --- /dev/null +++ b/icu4c/source/tools/icuinfo/CMakeLists.txt @@ -0,0 +1,5 @@ +add_executable(icuinfo icuinfo.cpp) +target_link_libraries(icuinfo PRIVATE icu_defaults icuuc toolutil icui18n) + +add_library(testplug testplug.c) +target_link_libraries(testplug PRIVATE icu_lib_defaults icuuc) diff --git a/icu4c/source/tools/icupkg/CMakeLists.txt b/icu4c/source/tools/icupkg/CMakeLists.txt new file mode 100644 index 00000000000..3314173216c --- /dev/null +++ b/icu4c/source/tools/icupkg/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(icupkg icupkg.cpp) +target_link_libraries(icupkg PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/icuswap/CMakeLists.txt b/icu4c/source/tools/icuswap/CMakeLists.txt new file mode 100644 index 00000000000..2228923cadf --- /dev/null +++ b/icu4c/source/tools/icuswap/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(icuswap icuswap.cpp) +target_link_libraries(icuswap PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/makeconv/CMakeLists.txt b/icu4c/source/tools/makeconv/CMakeLists.txt new file mode 100644 index 00000000000..54ff23e42bb --- /dev/null +++ b/icu4c/source/tools/makeconv/CMakeLists.txt @@ -0,0 +1,2 @@ +add_executable(makeconv gencnvex.c genmbcs.cpp makeconv.cpp ucnvstat.c) +target_link_libraries(makeconv PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/pkgdata/CMakeLists.txt b/icu4c/source/tools/pkgdata/CMakeLists.txt new file mode 100644 index 00000000000..064f26320c8 --- /dev/null +++ b/icu4c/source/tools/pkgdata/CMakeLists.txt @@ -0,0 +1,19 @@ +add_executable(pkgdata pkgdata.cpp pkgtypes.c) +target_link_libraries(pkgdata PRIVATE icu_defaults icuuc toolutil) + +add_dependencies(pkgdata gencnval) + +add_custom_command( + TARGET pkgdata POST_BUILD + COMMAND nmake /nologo /f ${icu4c_SOURCE_DIR}/data/makedata.mak + ICUMAKE=${icu4c_SOURCE_DIR}/data + DLL_OUTPUT=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} + ICUPBIN=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} + GENRB_DIR=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} + GENCNVAL_DIR=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} + GENCFU_DIR=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} + ICUPKG_DIR=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} + MAKECONV_DIR=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} + CFG=${CMAKE_CXX_COMPILER_ARCHITECTURE_ID}\\$ + $<$:DEBUG=true> + VERBATIM) \ No newline at end of file diff --git a/icu4c/source/tools/toolutil/CMakeLists.txt b/icu4c/source/tools/toolutil/CMakeLists.txt new file mode 100644 index 00000000000..8409fa77be4 --- /dev/null +++ b/icu4c/source/tools/toolutil/CMakeLists.txt @@ -0,0 +1,29 @@ +add_library(toolutil) +target_link_libraries(toolutil PRIVATE icu_lib_defaults icuuc icui18n) +target_include_directories(toolutil PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) +target_compile_definitions(toolutil PRIVATE U_TOOLUTIL_IMPLEMENTATION) +target_sources(toolutil PRIVATE + collationinfo.cpp + dbgutil.cpp + denseranges.cpp + filestrm.cpp + filetools.cpp + flagparser.cpp + package.cpp + pkg_genc.cpp + pkg_gencmn.cpp + pkg_icu.cpp + pkgitems.cpp + ppucd.cpp + swapimpl.cpp + toolutil.cpp + ucbuf.cpp + ucln_tu.cpp + ucm.cpp + ucmstate.cpp + udbgutil.cpp + unewdata.cpp + uoptions.cpp + uparse.cpp + writesrc.cpp + xmlparser.cpp) diff --git a/icu4c/source/tools/tzcode/CMakeLists.txt b/icu4c/source/tools/tzcode/CMakeLists.txt new file mode 100644 index 00000000000..95e35a32010 --- /dev/null +++ b/icu4c/source/tools/tzcode/CMakeLists.txt @@ -0,0 +1,3 @@ +add_executable(icuzdump icuzdump.cpp) +target_link_libraries(icuzdump PRIVATE + icu_defaults icuuc toolutil icui18n icuio) \ No newline at end of file From 4c0647d32aaee319fb17bf3edef182059562b39d Mon Sep 17 00:00:00 2001 From: Clemens Wasser Date: Fri, 31 Mar 2023 16:51:07 +0200 Subject: [PATCH 2/2] ICU-7747 Use sources.txt --- icu4c/source/CMakeLists.txt | 5 + icu4c/source/common/CMakeLists.txt | 201 +-------------- icu4c/source/i18n/CMakeLists.txt | 243 +----------------- icu4c/source/io/CMakeLists.txt | 14 +- icu4c/source/stubdata/CMakeLists.txt | 3 +- icu4c/source/test/intltest/CMakeLists.txt | 1 + icu4c/source/tools/ctestfw/CMakeLists.txt | 10 +- icu4c/source/tools/genbrk/CMakeLists.txt | 3 +- icu4c/source/tools/genccode/CMakeLists.txt | 3 +- icu4c/source/tools/gencfu/CMakeLists.txt | 3 +- icu4c/source/tools/gencmn/CMakeLists.txt | 3 +- icu4c/source/tools/gencnval/CMakeLists.txt | 3 +- icu4c/source/tools/gendict/CMakeLists.txt | 3 +- icu4c/source/tools/gennorm2/CMakeLists.txt | 8 +- icu4c/source/tools/genrb/CMakeLists.txt | 14 +- icu4c/source/tools/gensprep/CMakeLists.txt | 3 +- icu4c/source/tools/gentest/CMakeLists.txt | 3 +- .../source/tools/icuexportdata/CMakeLists.txt | 3 +- icu4c/source/tools/icuinfo/CMakeLists.txt | 3 +- icu4c/source/tools/icupkg/CMakeLists.txt | 3 +- icu4c/source/tools/icuswap/CMakeLists.txt | 3 +- icu4c/source/tools/makeconv/CMakeLists.txt | 3 +- icu4c/source/tools/pkgdata/CMakeLists.txt | 3 +- icu4c/source/tools/toolutil/CMakeLists.txt | 28 +- 24 files changed, 46 insertions(+), 523 deletions(-) diff --git a/icu4c/source/CMakeLists.txt b/icu4c/source/CMakeLists.txt index d5a3e815873..96c89a25454 100644 --- a/icu4c/source/CMakeLists.txt +++ b/icu4c/source/CMakeLists.txt @@ -36,6 +36,11 @@ if(WIN32) target_compile_definitions(icu_lib_defaults INTERFACE _HAS_EXCEPTIONS=0) endif() +macro(icu_add_sources target_name) + file(STRINGS sources.txt sources) + target_sources("${target_name}" PRIVATE "${sources}") +endmacro() + add_subdirectory(common) add_subdirectory(i18n) add_subdirectory(io) diff --git a/icu4c/source/common/CMakeLists.txt b/icu4c/source/common/CMakeLists.txt index caf885a92fb..9c6be92f192 100644 --- a/icu4c/source/common/CMakeLists.txt +++ b/icu4c/source/common/CMakeLists.txt @@ -1,4 +1,5 @@ add_library(icuuc) +icu_add_sources(icuuc) target_link_libraries(icuuc PRIVATE icu_defaults icu_lib_defaults icudt) target_include_directories(icuuc PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_compile_definitions(icuuc PRIVATE U_COMMON_IMPLEMENTATION) @@ -6,203 +7,3 @@ target_compile_definitions(icuuc PRIVATE U_COMMON_IMPLEMENTATION) if(WIN32) target_compile_definitions(icuuc PRIVATE $<$:RBBI_DEBUG> U_PLATFORM_USES_ONLY_WIN32_API=1) endif() - -target_sources(icuuc PRIVATE - appendable.cpp - bmpset.cpp - brkeng.cpp - brkiter.cpp - bytesinkutil.cpp - bytestream.cpp - bytestrie.cpp - bytestriebuilder.cpp - bytestrieiterator.cpp - caniter.cpp - characterproperties.cpp - chariter.cpp - charstr.cpp - cmemory.cpp - cstr.cpp - cstring.cpp - cwchar.cpp - dictbe.cpp - dictionarydata.cpp - dtintrv.cpp - edits.cpp - emojiprops.cpp - errorcode.cpp - filteredbrk.cpp - filterednormalizer2.cpp - icudataver.cpp - icuplug.cpp - loadednormalizer2impl.cpp - localebuilder.cpp - localematcher.cpp - localeprioritylist.cpp - locavailable.cpp - locbased.cpp - locdispnames.cpp - locdistance.cpp - locdspnm.cpp - locid.cpp - loclikely.cpp - loclikelysubtags.cpp - locmap.cpp - locresdata.cpp - locutil.cpp - lsr.cpp - lstmbe.cpp - messagepattern.cpp - normalizer2.cpp - normalizer2impl.cpp - normlzr.cpp - parsepos.cpp - patternprops.cpp - pluralmap.cpp - propname.cpp - propsvec.cpp - punycode.cpp - putil.cpp - rbbi.cpp - rbbi_cache.cpp - rbbidata.cpp - rbbinode.cpp - rbbirb.cpp - rbbiscan.cpp - rbbisetb.cpp - rbbistbl.cpp - rbbitblb.cpp - resbund.cpp - resbund_cnv.cpp - resource.cpp - restrace.cpp - ruleiter.cpp - schriter.cpp - serv.cpp - servlk.cpp - servlkf.cpp - servls.cpp - servnotf.cpp - servrbf.cpp - servslkf.cpp - sharedobject.cpp - simpleformatter.cpp - static_unicode_sets.cpp - stringpiece.cpp - stringtriebuilder.cpp - uarrsort.cpp - ubidi.cpp - ubidi_props.cpp - ubidiln.cpp - ubiditransform.cpp - ubidiwrt.cpp - ubrk.cpp - ucase.cpp - ucasemap.cpp - ucasemap_titlecase_brkiter.cpp - ucat.cpp - uchar.cpp - ucharstrie.cpp - ucharstriebuilder.cpp - ucharstrieiterator.cpp - uchriter.cpp - ucln_cmn.cpp - ucmndata.cpp - ucnv.cpp - ucnv2022.cpp - ucnv_bld.cpp - ucnv_cb.cpp - ucnv_cnv.cpp - ucnv_ct.cpp - ucnv_err.cpp - ucnv_ext.cpp - ucnv_io.cpp - ucnv_lmb.cpp - ucnv_set.cpp - ucnv_u16.cpp - ucnv_u32.cpp - ucnv_u7.cpp - ucnv_u8.cpp - ucnvbocu.cpp - ucnvdisp.cpp - ucnvhz.cpp - ucnvisci.cpp - ucnvlat1.cpp - ucnvmbcs.cpp - ucnvscsu.cpp - ucnvsel.cpp - ucol_swp.cpp - ucptrie.cpp - ucurr.cpp - udata.cpp - udatamem.cpp - udataswp.cpp - uenum.cpp - uhash.cpp - uhash_us.cpp - uidna.cpp - uinit.cpp - uinvchar.cpp - uiter.cpp - ulist.cpp - uloc.cpp - uloc_keytype.cpp - uloc_tag.cpp - umapfile.cpp - umath.cpp - umutablecptrie.cpp - umutex.cpp - unames.cpp - unifiedcache.cpp - unifilt.cpp - unifunct.cpp - uniset.cpp - uniset_closure.cpp - uniset_props.cpp - unisetspan.cpp - unistr.cpp - unistr_case.cpp - unistr_case_locale.cpp - unistr_cnv.cpp - unistr_props.cpp - unistr_titlecase_brkiter.cpp - unorm.cpp - unormcmp.cpp - uobject.cpp - uprops.cpp - ures_cnv.cpp - uresbund.cpp - uresdata.cpp - usc_impl.cpp - uscript.cpp - uscript_props.cpp - uset.cpp - uset_props.cpp - usetiter.cpp - ushape.cpp - usprep.cpp - ustack.cpp - ustr_cnv.cpp - ustr_titlecase_brkiter.cpp - ustr_wcs.cpp - ustrcase.cpp - ustrcase_locale.cpp - ustrenum.cpp - ustrfmt.cpp - ustring.cpp - ustrtrns.cpp - utext.cpp - utf_impl.cpp - util.cpp - util_props.cpp - utrace.cpp - utrie.cpp - utrie2.cpp - utrie2_builder.cpp - utrie_swap.cpp - uts46.cpp - utypes.cpp - uvector.cpp - uvectr32.cpp - uvectr64.cpp - wintz.cpp) \ No newline at end of file diff --git a/icu4c/source/i18n/CMakeLists.txt b/icu4c/source/i18n/CMakeLists.txt index 21daff7965d..7d1fe262f09 100644 --- a/icu4c/source/i18n/CMakeLists.txt +++ b/icu4c/source/i18n/CMakeLists.txt @@ -1,246 +1,5 @@ add_library(icui18n) +icu_add_sources(icui18n) target_link_libraries(icui18n PRIVATE icu_lib_defaults icuuc) target_compile_definitions(icui18n PRIVATE U_I18N_IMPLEMENTATION) target_include_directories(icui18n PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) -target_sources(icui18n PRIVATE - alphaindex.cpp - anytrans.cpp - astro.cpp - basictz.cpp - bocsu.cpp - brktrans.cpp - buddhcal.cpp - calendar.cpp - casetrn.cpp - cecal.cpp - chnsecal.cpp - choicfmt.cpp - coleitr.cpp - coll.cpp - collation.cpp - collationbuilder.cpp - collationcompare.cpp - collationdata.cpp - collationdatabuilder.cpp - collationdatareader.cpp - collationdatawriter.cpp - collationfastlatin.cpp - collationfastlatinbuilder.cpp - collationfcd.cpp - collationiterator.cpp - collationkeys.cpp - collationroot.cpp - collationrootelements.cpp - collationruleparser.cpp - collationsets.cpp - collationsettings.cpp - collationtailoring.cpp - collationweights.cpp - compactdecimalformat.cpp - coptccal.cpp - cpdtrans.cpp - csdetect.cpp - csmatch.cpp - csr2022.cpp - csrecog.cpp - csrmbcs.cpp - csrsbcs.cpp - csrucode.cpp - csrutf8.cpp - curramt.cpp - currfmt.cpp - currpinf.cpp - currunit.cpp - dangical.cpp - datefmt.cpp - dayperiodrules.cpp - dcfmtsym.cpp - decContext.cpp - decNumber.cpp - decimfmt.cpp - displayoptions.cpp - double-conversion-bignum-dtoa.cpp - double-conversion-bignum.cpp - double-conversion-cached-powers.cpp - double-conversion-double-to-string.cpp - double-conversion-fast-dtoa.cpp - double-conversion-string-to-double.cpp - double-conversion-strtod.cpp - dtfmtsym.cpp - dtitvfmt.cpp - dtitvinf.cpp - dtptngen.cpp - dtrule.cpp - erarules.cpp - esctrn.cpp - ethpccal.cpp - fmtable.cpp - fmtable_cnv.cpp - format.cpp - formatted_string_builder.cpp - formattedval_iterimpl.cpp - formattedval_sbimpl.cpp - formattedvalue.cpp - fphdlimp.cpp - fpositer.cpp - funcrepl.cpp - gender.cpp - gregocal.cpp - gregoimp.cpp - hebrwcal.cpp - indiancal.cpp - inputext.cpp - islamcal.cpp - japancal.cpp - listformatter.cpp - measfmt.cpp - measunit.cpp - measunit_extra.cpp - measure.cpp - msgfmt.cpp - name2uni.cpp - nfrs.cpp - nfrule.cpp - nfsubs.cpp - nortrans.cpp - nultrans.cpp - number_affixutils.cpp - number_asformat.cpp - number_capi.cpp - number_compact.cpp - number_currencysymbols.cpp - number_decimalquantity.cpp - number_decimfmtprops.cpp - number_fluent.cpp - number_formatimpl.cpp - number_grouping.cpp - number_integerwidth.cpp - number_longnames.cpp - number_mapper.cpp - number_modifiers.cpp - number_multiplier.cpp - number_notation.cpp - number_output.cpp - number_padding.cpp - number_patternmodifier.cpp - number_patternstring.cpp - number_rounding.cpp - number_scientific.cpp - number_skeletons.cpp - number_symbolswrapper.cpp - number_usageprefs.cpp - number_utils.cpp - numfmt.cpp - numparse_affixes.cpp - numparse_compositions.cpp - numparse_currency.cpp - numparse_decimal.cpp - numparse_impl.cpp - numparse_parsednumber.cpp - numparse_scientific.cpp - numparse_symbols.cpp - numparse_validators.cpp - numrange_capi.cpp - numrange_fluent.cpp - numrange_impl.cpp - numsys.cpp - olsontz.cpp - persncal.cpp - pluralranges.cpp - plurfmt.cpp - plurrule.cpp - quant.cpp - quantityformatter.cpp - rbnf.cpp - rbt.cpp - rbt_data.cpp - rbt_pars.cpp - rbt_rule.cpp - rbt_set.cpp - rbtz.cpp - regexcmp.cpp - regeximp.cpp - regexst.cpp - regextxt.cpp - region.cpp - reldatefmt.cpp - reldtfmt.cpp - rematch.cpp - remtrans.cpp - repattrn.cpp - rulebasedcollator.cpp - scientificnumberformatter.cpp - scriptset.cpp - search.cpp - selfmt.cpp - sharedbreakiterator.cpp - simpletz.cpp - smpdtfmt.cpp - smpdtfst.cpp - sortkey.cpp - standardplural.cpp - string_segment.cpp - strmatch.cpp - strrepl.cpp - stsearch.cpp - taiwncal.cpp - timezone.cpp - titletrn.cpp - tmunit.cpp - tmutamt.cpp - tmutfmt.cpp - tolowtrn.cpp - toupptrn.cpp - translit.cpp - transreg.cpp - tridpars.cpp - tzfmt.cpp - tzgnames.cpp - tznames.cpp - tznames_impl.cpp - tzrule.cpp - tztrans.cpp - ucal.cpp - ucln_in.cpp - ucol.cpp - ucol_res.cpp - ucol_sit.cpp - ucoleitr.cpp - ucsdet.cpp - udat.cpp - udateintervalformat.cpp - udatpg.cpp - ufieldpositer.cpp - uitercollationiterator.cpp - ulistformatter.cpp - ulocdata.cpp - umsg.cpp - unesctrn.cpp - uni2name.cpp - units_data.cpp - units_complexconverter.cpp - units_converter.cpp - units_router.cpp - unum.cpp - unumsys.cpp - upluralrules.cpp - uregex.cpp - uregexc.cpp - uregion.cpp - usearch.cpp - uspoof.cpp - uspoof_build.cpp - uspoof_conf.cpp - uspoof_impl.cpp - utf16collationiterator.cpp - utf8collationiterator.cpp - utmscale.cpp - utrans.cpp - vtzone.cpp - vzone.cpp - windtfmt.cpp - winnmfmt.cpp - wintzimpl.cpp - zonemeta.cpp - zrule.cpp - ztrans.cpp) diff --git a/icu4c/source/io/CMakeLists.txt b/icu4c/source/io/CMakeLists.txt index 50744648beb..48e5e455b30 100644 --- a/icu4c/source/io/CMakeLists.txt +++ b/icu4c/source/io/CMakeLists.txt @@ -1,17 +1,5 @@ add_library(icuio) +icu_add_sources(icuio) target_link_libraries(icuio PRIVATE icu_lib_defaults icuuc icui18n) target_compile_definitions(icuio PRIVATE U_IO_IMPLEMENTATION) target_include_directories(icuio PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) -target_sources(icuio PRIVATE - locbund.cpp - sprintf.cpp - sscanf.cpp - ucln_io.cpp - ufile.cpp - ufmt_cmn.cpp - uprintf.cpp - uprntf_p.cpp - uscanf.cpp - uscanf_p.cpp - ustdio.cpp - ustream.cpp) diff --git a/icu4c/source/stubdata/CMakeLists.txt b/icu4c/source/stubdata/CMakeLists.txt index 328fd0158a3..a994d412b08 100644 --- a/icu4c/source/stubdata/CMakeLists.txt +++ b/icu4c/source/stubdata/CMakeLists.txt @@ -1,4 +1,5 @@ -add_library(icudt stubdata.cpp) +add_library(icudt) +icu_add_sources(icudt) target_link_libraries(icudt PRIVATE icu_lib_defaults icuuc) target_compile_definitions(icudt PRIVATE U_COMMON_IMPLEMENTATION) diff --git a/icu4c/source/test/intltest/CMakeLists.txt b/icu4c/source/test/intltest/CMakeLists.txt index 06f87e4564d..ee612f5ace9 100644 --- a/icu4c/source/test/intltest/CMakeLists.txt +++ b/icu4c/source/test/intltest/CMakeLists.txt @@ -93,6 +93,7 @@ target_sources(intltest PRIVATE numbertest_patternstring.cpp numbertest_permutation.cpp numbertest_range.cpp + numbertest_simple.cpp numbertest_skeletons.cpp numfmtdatadriventest.cpp numfmtspectest.cpp diff --git a/icu4c/source/tools/ctestfw/CMakeLists.txt b/icu4c/source/tools/ctestfw/CMakeLists.txt index bedfac795d3..49a7247483b 100644 --- a/icu4c/source/tools/ctestfw/CMakeLists.txt +++ b/icu4c/source/tools/ctestfw/CMakeLists.txt @@ -1,11 +1,5 @@ add_library(ctestfw) +icu_add_sources(ctestfw) target_link_libraries(ctestfw PRIVATE icu_defaults icuuc toolutil) target_include_directories(ctestfw PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) -target_compile_definitions(ctestfw PRIVATE T_CTEST_IMPLEMENTATION) -target_sources(ctestfw PRIVATE - ctest.c - datamap.cpp - testdata.cpp - tstdtmod.cpp - ucln_ct.c - uperf.cpp) \ No newline at end of file +target_compile_definitions(ctestfw PRIVATE T_CTEST_IMPLEMENTATION) \ No newline at end of file diff --git a/icu4c/source/tools/genbrk/CMakeLists.txt b/icu4c/source/tools/genbrk/CMakeLists.txt index f92e4a82e0a..34063851e66 100644 --- a/icu4c/source/tools/genbrk/CMakeLists.txt +++ b/icu4c/source/tools/genbrk/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(genbrk genbrk.cpp) +add_executable(genbrk) +icu_add_sources(genbrk) target_link_libraries(genbrk PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/genccode/CMakeLists.txt b/icu4c/source/tools/genccode/CMakeLists.txt index e9e7c390cdc..abbfff9a33c 100644 --- a/icu4c/source/tools/genccode/CMakeLists.txt +++ b/icu4c/source/tools/genccode/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(genccode genccode.c) +add_executable(genccode) +icu_add_sources(genccode) target_link_libraries(genccode PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/gencfu/CMakeLists.txt b/icu4c/source/tools/gencfu/CMakeLists.txt index c6a1e408743..0fee54b37a1 100644 --- a/icu4c/source/tools/gencfu/CMakeLists.txt +++ b/icu4c/source/tools/gencfu/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(gencfu gencfu.cpp) +add_executable(gencfu) +icu_add_sources(gencfu) target_link_libraries(gencfu PRIVATE icu_defaults icuuc toolutil icui18n) \ No newline at end of file diff --git a/icu4c/source/tools/gencmn/CMakeLists.txt b/icu4c/source/tools/gencmn/CMakeLists.txt index beeb04a76fc..2d942b21748 100644 --- a/icu4c/source/tools/gencmn/CMakeLists.txt +++ b/icu4c/source/tools/gencmn/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(gencmn gencmn.c) +add_executable(gencmn) +icu_add_sources(gencmn) target_link_libraries(gencmn PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/gencnval/CMakeLists.txt b/icu4c/source/tools/gencnval/CMakeLists.txt index aa1f99d03f7..4067609abf9 100644 --- a/icu4c/source/tools/gencnval/CMakeLists.txt +++ b/icu4c/source/tools/gencnval/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(gencnval gencnval.c) +add_executable(gencnval) +icu_add_sources(gencnval) target_link_libraries(gencnval PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/gendict/CMakeLists.txt b/icu4c/source/tools/gendict/CMakeLists.txt index 7acb1aaebd9..05b67fa4c75 100644 --- a/icu4c/source/tools/gendict/CMakeLists.txt +++ b/icu4c/source/tools/gendict/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(gendict gendict.cpp) +add_executable(gendict) +icu_add_sources(gendict) target_link_libraries(gendict PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/gennorm2/CMakeLists.txt b/icu4c/source/tools/gennorm2/CMakeLists.txt index d1f9f9a6a89..f832a10074e 100644 --- a/icu4c/source/tools/gennorm2/CMakeLists.txt +++ b/icu4c/source/tools/gennorm2/CMakeLists.txt @@ -1,7 +1,3 @@ add_executable(gennorm2) -target_link_libraries(gennorm2 PRIVATE icu_defaults icuuc toolutil) -target_sources(gennorm2 PRIVATE - extradata.cpp - gennorm2.cpp - n2builder.cpp - norms.cpp) \ No newline at end of file +icu_add_sources(gennorm2) +target_link_libraries(gennorm2 PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/genrb/CMakeLists.txt b/icu4c/source/tools/genrb/CMakeLists.txt index e0c8c59b1be..09f1387a303 100644 --- a/icu4c/source/tools/genrb/CMakeLists.txt +++ b/icu4c/source/tools/genrb/CMakeLists.txt @@ -1,18 +1,6 @@ add_executable(genrb) +icu_add_sources(genrb) target_link_libraries(genrb PRIVATE icu_defaults icuuc toolutil icui18n) -target_sources(genrb PRIVATE - errmsg.c - filterrb.cpp - genrb.cpp - parse.cpp - prscmnts.cpp - rbutil.c - read.c - reslist.cpp - rle.c - ustr.c - wrtjava.cpp - wrtxml.cpp) add_executable(derb derb.cpp) target_link_libraries(derb PRIVATE icu_defaults icuuc toolutil icuio icui18n) \ No newline at end of file diff --git a/icu4c/source/tools/gensprep/CMakeLists.txt b/icu4c/source/tools/gensprep/CMakeLists.txt index 83bf9f23ab1..d3fb80e10e7 100644 --- a/icu4c/source/tools/gensprep/CMakeLists.txt +++ b/icu4c/source/tools/gensprep/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(gensprep gensprep.c store.c) +add_executable(gensprep) +icu_add_sources(gensprep) target_link_libraries(gensprep PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/gentest/CMakeLists.txt b/icu4c/source/tools/gentest/CMakeLists.txt index d609a4084e5..fbe83b5d96e 100644 --- a/icu4c/source/tools/gentest/CMakeLists.txt +++ b/icu4c/source/tools/gentest/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(gentest gentest.c genres32.c) +add_executable(gentest) +icu_add_sources(gentest) target_link_libraries(gentest PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/icuexportdata/CMakeLists.txt b/icu4c/source/tools/icuexportdata/CMakeLists.txt index ee8518506b5..640f5325227 100644 --- a/icu4c/source/tools/icuexportdata/CMakeLists.txt +++ b/icu4c/source/tools/icuexportdata/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(icuexportdata icuexportdata.cpp) +add_executable(icuexportdata) +icu_add_sources(icuexportdata) target_link_libraries(icuexportdata PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/icuinfo/CMakeLists.txt b/icu4c/source/tools/icuinfo/CMakeLists.txt index 5118e6990f4..852e8bc5259 100644 --- a/icu4c/source/tools/icuinfo/CMakeLists.txt +++ b/icu4c/source/tools/icuinfo/CMakeLists.txt @@ -1,4 +1,5 @@ -add_executable(icuinfo icuinfo.cpp) +add_executable(icuinfo) +icu_add_sources(icuinfo) target_link_libraries(icuinfo PRIVATE icu_defaults icuuc toolutil icui18n) add_library(testplug testplug.c) diff --git a/icu4c/source/tools/icupkg/CMakeLists.txt b/icu4c/source/tools/icupkg/CMakeLists.txt index 3314173216c..ee15c1ffad8 100644 --- a/icu4c/source/tools/icupkg/CMakeLists.txt +++ b/icu4c/source/tools/icupkg/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(icupkg icupkg.cpp) +add_executable(icupkg) +icu_add_sources(icupkg) target_link_libraries(icupkg PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/icuswap/CMakeLists.txt b/icu4c/source/tools/icuswap/CMakeLists.txt index 2228923cadf..8863a7768c7 100644 --- a/icu4c/source/tools/icuswap/CMakeLists.txt +++ b/icu4c/source/tools/icuswap/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(icuswap icuswap.cpp) +add_executable(icuswap) +icu_add_sources(icuswap) target_link_libraries(icuswap PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/makeconv/CMakeLists.txt b/icu4c/source/tools/makeconv/CMakeLists.txt index 54ff23e42bb..7020da75bc7 100644 --- a/icu4c/source/tools/makeconv/CMakeLists.txt +++ b/icu4c/source/tools/makeconv/CMakeLists.txt @@ -1,2 +1,3 @@ -add_executable(makeconv gencnvex.c genmbcs.cpp makeconv.cpp ucnvstat.c) +add_executable(makeconv) +icu_add_sources(makeconv) target_link_libraries(makeconv PRIVATE icu_defaults icuuc toolutil) \ No newline at end of file diff --git a/icu4c/source/tools/pkgdata/CMakeLists.txt b/icu4c/source/tools/pkgdata/CMakeLists.txt index 064f26320c8..4e06c361360 100644 --- a/icu4c/source/tools/pkgdata/CMakeLists.txt +++ b/icu4c/source/tools/pkgdata/CMakeLists.txt @@ -1,4 +1,5 @@ -add_executable(pkgdata pkgdata.cpp pkgtypes.c) +add_executable(pkgdata) +icu_add_sources(pkgdata) target_link_libraries(pkgdata PRIVATE icu_defaults icuuc toolutil) add_dependencies(pkgdata gencnval) diff --git a/icu4c/source/tools/toolutil/CMakeLists.txt b/icu4c/source/tools/toolutil/CMakeLists.txt index 8409fa77be4..ff3f0df75ec 100644 --- a/icu4c/source/tools/toolutil/CMakeLists.txt +++ b/icu4c/source/tools/toolutil/CMakeLists.txt @@ -1,29 +1,5 @@ add_library(toolutil) +icu_add_sources(toolutil) target_link_libraries(toolutil PRIVATE icu_lib_defaults icuuc icui18n) target_include_directories(toolutil PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) -target_compile_definitions(toolutil PRIVATE U_TOOLUTIL_IMPLEMENTATION) -target_sources(toolutil PRIVATE - collationinfo.cpp - dbgutil.cpp - denseranges.cpp - filestrm.cpp - filetools.cpp - flagparser.cpp - package.cpp - pkg_genc.cpp - pkg_gencmn.cpp - pkg_icu.cpp - pkgitems.cpp - ppucd.cpp - swapimpl.cpp - toolutil.cpp - ucbuf.cpp - ucln_tu.cpp - ucm.cpp - ucmstate.cpp - udbgutil.cpp - unewdata.cpp - uoptions.cpp - uparse.cpp - writesrc.cpp - xmlparser.cpp) +target_compile_definitions(toolutil PRIVATE U_TOOLUTIL_IMPLEMENTATION) \ No newline at end of file