2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
spec2def(winsta.dll winsta.spec)
|
|
|
|
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2015-03-14 13:40:36 +00:00
|
|
|
|
2011-05-16 13:12:07 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
logon.c
|
|
|
|
main.c
|
|
|
|
misc.c
|
|
|
|
query.c
|
|
|
|
security.c
|
|
|
|
server.c
|
|
|
|
ws.c
|
2014-02-10 12:19:56 +00:00
|
|
|
winsta.h)
|
|
|
|
|
|
|
|
add_library(winsta SHARED
|
|
|
|
${SOURCE}
|
2011-05-16 13:12:07 +00:00
|
|
|
winsta.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/winsta.def)
|
|
|
|
|
|
|
|
set_module_type(winsta win32dll)
|
|
|
|
target_link_libraries(winsta wine)
|
|
|
|
add_importlibs(winsta msvcrt kernel32 ntdll)
|
2014-02-10 12:19:56 +00:00
|
|
|
add_pch(winsta winsta.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET winsta DESTINATION reactos/system32 FOR all)
|