reactos/drivers/video/font/ftfd/CMakeLists.txt
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +00:00

27 lines
572 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/freetype/include)
spec2def(ftfd.dll ftfd.spec)
add_library(ftfd SHARED
enable.c
font.c
glyph.c
rosglue.c
sprintf.c
${CMAKE_CURRENT_BINARY_DIR}/ftfd.def)
set_entrypoint(ftfd FtfdEnableDriver 12)
set_subsystem(ftfd native)
set_image_base(ftfd ${baseaddress_ftfd})
target_link_libraries(ftfd
freetype
libcntpr)
add_pch(ftfd ftfd.h)
add_importlibs(ftfd win32k)
add_dependencies(ftfd psdk)
add_cd_file(TARGET ftfd DESTINATION reactos/system32 FOR all)
add_importlib_target(ftfd.spec)