mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
14 lines
No EOL
281 B
CMake
14 lines
No EOL
281 B
CMake
set_rc_compiler()
|
|
set_unicode()
|
|
|
|
add_executable(logon
|
|
logon.c
|
|
logon.rc)
|
|
|
|
set_module_type(logon win32gui)
|
|
set_target_properties(logon PROPERTIES SUFFIX ".scr")
|
|
|
|
target_link_libraries(logon scrnsave)
|
|
add_importlibs(logon user32 gdi32 msvcrt kernel32)
|
|
|
|
add_cab_target(logon 1) |