diff options
author | Simon Wanner <skyrising@pvpctutorials.de> | 2022-04-09 09:28:38 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-09 23:48:18 +0200 |
commit | 206d6ece55e44117fd49525eeca5bd28d83ac5eb (patch) | |
tree | 42f45ba540faffd38608380dad02d7614c6e7e5a /Meta/Lagom | |
parent | 6f8fd91f225c9eb3e5faeda1aaf6cee1e1f12cc9 (diff) | |
download | serenity-206d6ece55e44117fd49525eeca5bd28d83ac5eb.zip |
LibGfx: Move other font-related files to LibGfx/Font/
Diffstat (limited to 'Meta/Lagom')
-rw-r--r-- | Meta/Lagom/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index e8fbb36ec4..7d140c629a 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -340,9 +340,10 @@ if (BUILD_LAGOM) # Gfx file(GLOB LIBGFX_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGfx/*.cpp") + file(GLOB LIBGFX_FONT_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGfx/Font/*.cpp") file(GLOB LIBGFX_TTF_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGfx/Font/TrueType/*.cpp") lagom_lib(Gfx gfx - SOURCES ${LIBGFX_SOURCES} ${LIBGFX_TTF_SOURCES} + SOURCES ${LIBGFX_SOURCES} ${LIBGFX_FONT_SOURCES} ${LIBGFX_TTF_SOURCES} LIBS m LagomCompress LagomTextCodec LagomIPC ) |