reactos/dll/cpl/console/CMakeLists.txt
Hermès Bélusca-Maïto 53eba1ba5f [CONSOLE.DLL-CONSRV]
- Further separate properties of the GUI terminal front-end and those independent of the UI.
- Fix some console initialization steps.

svn path=/branches/ros-csrss/; revision=58605
2013-03-24 17:08:10 +00:00

29 lines
513 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/win32ss/user/consrv)
spec2def(console.dll console.spec)
list(APPEND SOURCE
console.c
options.c
font.c
layout.c
colors.c
console.rc
${CMAKE_CURRENT_BINARY_DIR}/console.def)
add_library(console SHARED ${SOURCE})
set_module_type(console win32dll UNICODE)
add_importlibs(console
msvcrt
user32
gdi32
comctl32
kernel32
ntdll)
add_pch(console console.h)
add_cd_file(TARGET console DESTINATION reactos/system32 FOR all)