* Sync the recent cmake branch changes.
[reactos.git] / dll / shellext / fontext / CMakeLists.txt
1
2 set_unicode()
3 set_rc_compiler()
4 spec2def(fontext.dll fontext.spec)
5
6 add_library(fontext SHARED
7 fontext.c
8 regsvr.c
9 fontext.rc
10 ${CMAKE_CURRENT_BINARY_DIR}/fontext.def)
11
12 set_module_type(fontext win32dll)
13
14 target_link_libraries(fontext uuid)
15
16 add_importlibs(fontext
17 user32
18 gdi32
19 ole32
20 shlwapi
21 lz32
22 advapi32
23 setupapi
24 msvcrt
25 kernel32
26 ntdll)
27
28 add_cd_file(TARGET fontext DESTINATION reactos/system32 FOR all)