mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:07:35 +00:00
LibGfx: Move TTF files from TrueTypeFont/ to Font/TrueType/
This commit is contained in:
parent
e84bbfed44
commit
6f8fd91f22
15 changed files with 36 additions and 36 deletions
|
@ -340,11 +340,11 @@ if (BUILD_LAGOM)
|
|||
|
||||
# Gfx
|
||||
file(GLOB LIBGFX_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGfx/*.cpp")
|
||||
file(GLOB LIBGFX_TTF_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGfx/TrueTypeFont/*.cpp")
|
||||
file(GLOB LIBGFX_TTF_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGfx/Font/TrueType/*.cpp")
|
||||
lagom_lib(Gfx gfx
|
||||
SOURCES ${LIBGFX_SOURCES} ${LIBGFX_TTF_SOURCES}
|
||||
LIBS m LagomCompress LagomTextCodec LagomIPC
|
||||
)
|
||||
SOURCES ${LIBGFX_SOURCES} ${LIBGFX_TTF_SOURCES}
|
||||
LIBS m LagomCompress LagomTextCodec LagomIPC
|
||||
)
|
||||
|
||||
# GPU
|
||||
file(GLOB LIBGPU_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGPU/*.cpp")
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibGfx/TrueTypeFont/Font.h>
|
||||
#include <LibGfx/Font/TrueType/Font.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue