mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
cbff9a3046
This avoids keeping connections open and reopening them as soon as the user reopens their session. This fixes network shared being duplicated each time session is reopened. CORE-15012
27 lines
773 B
CMake
27 lines
773 B
CMake
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/idl
|
|
${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
add_rpc_files(server ${REACTOS_SOURCE_DIR}/sdk/include/reactos/idl/winreg.idl)
|
|
|
|
list(APPEND SOURCE
|
|
environment.c
|
|
notify.c
|
|
rpcserver.c
|
|
sas.c
|
|
screensaver.c
|
|
setup.c
|
|
shutdown.c
|
|
winlogon.c
|
|
wlx.c
|
|
winlogon.h
|
|
${CMAKE_CURRENT_BINARY_DIR}/winreg_s.c)
|
|
|
|
add_rc_deps(winlogon.rc ${CMAKE_CURRENT_SOURCE_DIR}/res/winlogon.ico)
|
|
add_executable(winlogon ${SOURCE} winlogon.rc)
|
|
target_link_libraries(winlogon wine)
|
|
set_module_type(winlogon win32gui)
|
|
add_importlibs(winlogon user32 advapi32 userenv secur32 rpcrt4 mpr msvcrt kernel32 ntdll)
|
|
add_pch(winlogon winlogon.h SOURCE)
|
|
add_cd_file(TARGET winlogon DESTINATION reactos/system32 FOR all)
|