reactos/base/system/logonui/CMakeLists.txt
Vitaly Orekhov 3647f6a5eb
[LOGONUI] Make Logon UI compilable again (#4684)
Logon UI was excluded from CMake build, probably for not being compliant
with 'warnings are errors' standard introduced at some point.
In the future, I would probably try to make Logon UI usable
alongside with the classic msgina interface.

- Add logonui back to CMakeLists
- Replace 'wcscpy_s' Vista+ function with StringCchCopyW
- Exclude some unused functions

Signed-off-by: Vitaly Orekhov <crce2000@mail.ru>
Reviewed-by: Stanislav Motylkov <x86corez@gmail.com>
Reviewed-by: Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
2022-09-14 15:10:37 +03:00

6 lines
234 B
CMake

add_executable(logonui logonui.c NT5design.c logonui.rc)
set_module_type(logonui win32gui UNICODE)
add_importlibs(logonui gdi32 user32 msimg32 shell32 msvcrt kernel32)
add_cd_file(TARGET logonui DESTINATION reactos/system32 FOR all)