0755b8feea475db5b91811561152aad0f7fef086
[reactos.git] / drivers / video / font / ftfd / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/freetype/include)
3
4 add_library(ftfd SHARED
5 enable.c
6 font.c
7 glyph.c
8 rosglue.c
9 sprintf.c)
10
11 set_entrypoint(ftfd FtfdEnableDriver@12)
12 set_subsystem(ftfd native)
13
14 target_link_libraries(ftfd
15 ${CMAKE_CURRENT_SOURCE_DIR}/freetype.def
16 freetype
17 libcntpr)
18
19 add_importlibs(ftfd win32k)
20 add_dependencies(ftfd psdk)
21 add_cab_target(ftfd 1)
22 add_importlib_target(ftfd.spec)