[CONSOLE.DLL-KERNEL32-CONSRV]
[reactos.git] / dll / cpl / console / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/win32ss/user/consrv)
3
4 spec2def(console.dll console.spec)
5
6 list(APPEND SOURCE
7 console.c
8 options.c
9 font.c
10 layout.c
11 colors.c
12 console.rc
13 ${CMAKE_CURRENT_BINARY_DIR}/console.def)
14
15 add_library(console SHARED ${SOURCE})
16
17 set_module_type(console win32dll UNICODE)
18
19 add_importlibs(console
20 msvcrt
21 user32
22 gdi32
23 comctl32
24 kernel32)
25
26 add_pch(console console.h)
27 add_cd_file(TARGET console DESTINATION reactos/system32 FOR all)