diff options
author | Nico Weber <thakis@chromium.org> | 2022-12-26 08:21:54 -0500 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2022-12-27 07:44:37 -0700 |
commit | 7f52f45e9d7704b684714201af138974adfcfcfe (patch) | |
tree | d962a80f9c38b7ee43705fc4b98c5ac81df67420 /Userland/Utilities/CMakeLists.txt | |
parent | d8867f8077c9a71c51ca0493f83b2d88145169d3 (diff) | |
download | serenity-7f52f45e9d7704b684714201af138974adfcfcfe.zip |
LibGfx: Start adding a utility for handling ICC color profiles
For now, this dumps file version and device class.
https://github.com/saucecontrol/compact-icc-profiles has good
test inputs.
Diffstat (limited to 'Userland/Utilities/CMakeLists.txt')
-rw-r--r-- | Userland/Utilities/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/CMakeLists.txt b/Userland/Utilities/CMakeLists.txt index ee44b5ed78..52e67a629d 100644 --- a/Userland/Utilities/CMakeLists.txt +++ b/Userland/Utilities/CMakeLists.txt @@ -90,6 +90,7 @@ target_link_libraries(grep PRIVATE LibRegex) target_link_libraries(gunzip PRIVATE LibCompress) target_link_libraries(gzip PRIVATE LibCompress) target_link_libraries(headless-browser PRIVATE LibCrypto LibGemini LibGfx LibHTTP LibTLS LibWeb LibWebSocket LibIPC LibJS) +target_link_libraries(icc PRIVATE LibGfx) target_link_libraries(jail-attach PRIVATE LibCore LibMain) target_link_libraries(jail-create PRIVATE LibCore LibMain) target_link_libraries(js PRIVATE LibCrypto LibJS LibLine LibLocale LibTextCodec) |