2011-05-16 13:12:07 +00:00
|
|
|
|
2011-06-26 21:29:55 +00:00
|
|
|
spec2def(msgina.dll msgina.spec)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2020-05-09 21:37:40 +00:00
|
|
|
list(APPEND SOURCE
|
2011-05-16 13:12:07 +00:00
|
|
|
gui.c
|
2014-02-02 12:12:59 +00:00
|
|
|
lsa.c
|
2011-05-16 13:12:07 +00:00
|
|
|
msgina.c
|
2014-09-29 20:14:21 +00:00
|
|
|
shutdown.c
|
2011-05-16 13:12:07 +00:00
|
|
|
stubs.c
|
2020-05-09 21:37:40 +00:00
|
|
|
tui.c)
|
2014-02-10 12:19:56 +00:00
|
|
|
|
2020-05-09 21:37:40 +00:00
|
|
|
list(APPEND PCH_SKIP_SOURCE
|
|
|
|
dimmedwindow.cpp
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/msgina_stubs.c)
|
2016-09-04 14:17:22 +00:00
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(msgina MODULE
|
2020-05-09 21:37:40 +00:00
|
|
|
${SOURCE}
|
|
|
|
${PCH_SKIP_SOURCE}
|
2011-05-16 13:12:07 +00:00
|
|
|
msgina.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/msgina.def)
|
|
|
|
|
2016-09-04 14:17:22 +00:00
|
|
|
set_module_type(msgina win32dll UNICODE)
|
2020-09-18 09:08:58 +00:00
|
|
|
target_link_libraries(msgina wine uuid ${PSEH_LIB} cpprt atl_classes)
|
2014-02-01 15:46:09 +00:00
|
|
|
add_delay_importlibs(msgina secur32)
|
2016-03-27 15:14:32 +00:00
|
|
|
add_importlibs(msgina advapi32 user32 gdi32 powrprof userenv msvcrt kernel32 ntdll)
|
2020-05-09 21:37:40 +00:00
|
|
|
add_pch(msgina msgina.h "${PCH_SKIP_SOURCE}")
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET msgina DESTINATION reactos/system32 FOR all)
|