mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 00:57:43 +00:00
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.)
This commit is contained in:
parent
f3676ebef5
commit
e09b83c60c
10 changed files with 148 additions and 21 deletions
|
@ -7,7 +7,7 @@ OBJS = \
|
|||
|
||||
PROGRAM = Browser
|
||||
|
||||
LIB_DEPS = Web JS GUI Gfx IPC Protocol Core
|
||||
LIB_DEPS = Web JS TextCodec GUI Gfx IPC Protocol Core
|
||||
|
||||
main.cpp: ../../Libraries/LibWeb/CSS/PropertyID.h
|
||||
../../Libraries/LibWeb/CSS/PropertyID.h:
|
||||
|
|
|
@ -7,6 +7,6 @@ OBJS = \
|
|||
|
||||
PROGRAM = Help
|
||||
|
||||
LIB_DEPS = GUI Web JS Gfx Markdown IPC Protocol Thread Pthread Core
|
||||
LIB_DEPS = GUI Web TextCodec JS Gfx Markdown IPC Protocol Thread Pthread Core
|
||||
|
||||
include ../../Makefile.common
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -4,6 +4,6 @@ OBJS = \
|
|||
|
||||
PROGRAM = TextEditor
|
||||
|
||||
LIB_DEPS = Web Markdown GUI Gfx VT Protocol IPC Thread Pthread Core JS
|
||||
LIB_DEPS = Web TextCodec Markdown GUI Gfx VT Protocol IPC Thread Pthread Core JS
|
||||
|
||||
include ../../Makefile.common
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue