[KERNEL32]
[reactos.git] / win32ss / user / winsrv / consrv.cmake
1
2 remove_definitions(-D_WIN32_WINNT=0x502)
3 add_definitions(-D_WIN32_WINNT=0x600)
4
5 include_directories(consrv)
6
7 list(APPEND CONSRV_SOURCE
8 consrv/alias.c
9 consrv/coninput.c
10 consrv/conoutput.c
11 consrv/console.c
12 consrv/frontendctl.c
13 consrv/handle.c
14 consrv/init.c
15 consrv/lineinput.c
16 consrv/settings.c
17 consrv/subsysreg.c
18 consrv/condrv/coninput.c
19 consrv/condrv/conoutput.c
20 consrv/condrv/console.c
21 consrv/condrv/dummyterm.c
22 consrv/condrv/graphics.c
23 consrv/condrv/text.c
24 consrv/frontends/input.c
25 consrv/frontends/terminal.c
26 consrv/frontends/gui/conwnd.c
27 consrv/frontends/gui/fullscreen.c
28 consrv/frontends/gui/guiterm.c
29 consrv/frontends/gui/guisettings.c
30 consrv/frontends/gui/graphics.c
31 consrv/frontends/gui/text.c
32 consrv/frontends/tui/tuiterm.c
33 # consrv/consrv.rc
34 consrv/consrv.h
35 )
36
37 #
38 # Explicitely enable MS extensions to be able to use unnamed (anonymous) nested structs.
39 #
40 # FIXME: http://www.cmake.org/Bug/view.php?id=12998
41 if(MSVC)
42 ## NOTE: No need to specify it as we use MSVC :)
43 ##add_target_compile_flags(consrv "/Ze")
44 #set_source_files_properties(${CONSRV_SOURCE} PROPERTIES COMPILE_FLAGS "/Ze")
45 else()
46 #add_target_compile_flags(consrv "-fms-extensions")
47 set_source_files_properties(${CONSRV_SOURCE} PROPERTIES COMPILE_FLAGS "-fms-extensions")
48 endif()
49
50 add_library(consrv ${CONSRV_SOURCE})
51 add_pch(consrv consrv/consrv.h CONSRV_SOURCE)
52 #add_object_library(consrv ${CONSRV_SOURCE})
53
54 list(APPEND CONSRV_IMPORT_LIBS psapi)
55 list(APPEND CONSRV_DELAY_IMPORT_LIBS ole32)
56 list(APPEND CONSRV_TARGET_LINK_LIBS uuid)
57
58 set_module_type(consrv module UNICODE)