diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-03 22:41:34 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-03 23:01:58 +0200 |
commit | e09b83c60c77bef5fc7704dfe6f70df75462b62f (patch) | |
tree | 6e2e82163757b231678b6980b92d6d6aa66f6097 /Applications/IRCClient | |
parent | f3676ebef501a6a3ea5748cc405841a90f60d979 (diff) | |
download | serenity-e09b83c60c77bef5fc7704dfe6f70df75462b62f.zip |
LibTextCodec: Start fleshing out a simple text codec library
We're starting with a very basic decoding API and only ISO-8859-1 and
UTF-8 decoding (and UTF-8 decoding is really a no-op since String is
expected to be UTF-8.)
Diffstat (limited to 'Applications/IRCClient')
-rw-r--r-- | Applications/IRCClient/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/IRCClient/Makefile b/Applications/IRCClient/Makefile index fc4a987ea6..693d63ac6f 100644 --- a/Applications/IRCClient/Makefile +++ b/Applications/IRCClient/Makefile @@ -11,6 +11,6 @@ OBJS = \ PROGRAM = IRCClient -LIB_DEPS = Web JS GUI Gfx Protocol IPC Thread Pthread Core +LIB_DEPS = Web TextCodec JS GUI Gfx Protocol IPC Thread Pthread Core include ../../Makefile.common |