1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:07:45 +00:00

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.
This commit is contained in:
Nico Weber 2022-12-26 08:21:54 -05:00 committed by Andrew Kaster
parent d8867f8077
commit 7f52f45e9d
3 changed files with 31 additions and 0 deletions

View file

@ -482,6 +482,9 @@ if (BUILD_LAGOM)
target_link_libraries(headless-browser LibWeb LibWebSocket LibCrypto LibGemini LibHTTP LibJS LibGfx LibMain LibTLS LibIPC LibJS)
endif()
add_executable(icc ../../Userland/Utilities/icc.cpp)
target_link_libraries(icc LibCore LibGfx LibMain)
add_executable(js ../../Userland/Utilities/js.cpp)
target_link_libraries(js LibCrypto LibJS LibLine LibLocale LibMain LibTextCodec Threads::Threads)
if (EMSCRIPTEN)