mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
21 lines
No EOL
412 B
CMake
21 lines
No EOL
412 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/freetype/include)
|
|
|
|
add_library(ftfd SHARED
|
|
enable.c
|
|
font.c
|
|
glyph.c
|
|
rosglue.c
|
|
sprintf.c)
|
|
|
|
set_entrypoint(ftfd FtfdEnableDriver@12)
|
|
set_subsystem(ftfd native)
|
|
|
|
target_link_libraries(ftfd
|
|
${CMAKE_CURRENT_SOURCE_DIR}/freetype.def
|
|
freetype
|
|
libcntpr)
|
|
|
|
add_importlibs(ftfd win32k)
|
|
add_dependencies(ftfd psdk)
|
|
add_cab_target(ftfd 1) |