1 2spec2def(fontext.dll fontext.spec) 3 4list(APPEND SOURCE 5 fontext.c 6 regsvr.c 7 fontext.h) 8 9add_library(fontext MODULE 10 ${SOURCE} 11 fontext.rc 12 ${CMAKE_CURRENT_BINARY_DIR}/fontext.def) 13 14set_module_type(fontext win32dll UNICODE) 15target_link_libraries(fontext uuid) 16add_importlibs(fontext user32 gdi32 ole32 shlwapi lz32 advapi32 setupapi msvcrt kernel32 ntdll) 17add_pch(fontext fontext.h SOURCE) 18add_cd_file(TARGET fontext DESTINATION reactos/system32 FOR all) 19