mirror of
https://github.com/RGBCube/serenity
synced 2025-07-23 03:57:40 +00:00

Currently, LibUnicodeData contains the generated UCD and CLDR data. Move the UCD data to the main LibUnicode library, and rename LibUnicodeData to LibLocaleData. This is another prepatory change to migrate to LibLocale.
10 lines
334 B
CMake
10 lines
334 B
CMake
serenity_testjs_test(test-js.cpp test-js)
|
|
|
|
install(TARGETS test-js RUNTIME DESTINATION bin OPTIONAL)
|
|
link_with_locale_data(test-js)
|
|
|
|
serenity_test(test-invalid-unicode-js.cpp LibJS LIBS LibJS)
|
|
link_with_locale_data(test-invalid-unicode-js)
|
|
|
|
serenity_test(test-bytecode-js.cpp LibJS LIBS LibJS)
|
|
link_with_locale_data(test-bytecode-js)
|