mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
32 lines
617 B
CMake
32 lines
617 B
CMake
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/win32ss/user/winsrv/consrv
|
|
${REACTOS_SOURCE_DIR}/win32ss/user/winsrv/consrv/frontends/gui)
|
|
|
|
spec2def(console.dll console.spec)
|
|
|
|
list(APPEND SOURCE
|
|
console.c
|
|
options.c
|
|
font.c
|
|
layout.c
|
|
colors.c
|
|
console.h)
|
|
|
|
add_library(console SHARED
|
|
${SOURCE}
|
|
console.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/console.def)
|
|
|
|
set_module_type(console win32dll UNICODE)
|
|
|
|
add_importlibs(console
|
|
msvcrt
|
|
user32
|
|
gdi32
|
|
comctl32
|
|
kernel32
|
|
ntdll)
|
|
|
|
add_pch(console console.h SOURCE)
|
|
add_cd_file(TARGET console DESTINATION reactos/system32 FOR all)
|