xref: /reactos/dll/shellext/fontext/CMakeLists.txt (revision b819608e)
1
2spec2def(fontext.dll fontext.spec)
3
4list(APPEND SOURCE
5    fontext.c
6    regsvr.c
7    fontext.h)
8
9add_library(fontext SHARED
10    ${SOURCE}
11    fontext.rc
12    ${CMAKE_CURRENT_BINARY_DIR}/fontext.def)
13
14set_module_type(fontext win32dll UNICODE)
15target_link_libraries(fontext uuid)
16
17add_importlibs(fontext
18    user32
19    gdi32
20    ole32
21    shlwapi
22    lz32
23    advapi32
24    setupapi
25    msvcrt
26    kernel32
27    ntdll)
28
29add_pch(fontext fontext.h SOURCE)
30add_cd_file(TARGET fontext DESTINATION reactos/system32 FOR all)
31