mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
9 lines
306 B
CMake
9 lines
306 B
CMake
|
|
add_executable(mazescr maze.c maze.rc)
|
|
|
|
set_module_type(mazescr win32gui UNICODE)
|
|
set_target_properties(mazescr PROPERTIES SUFFIX ".scr")
|
|
target_link_libraries(mazescr scrnsave)
|
|
add_importlibs(mazescr user32 gdi32 advapi32 msvcrt kernel32)
|
|
add_cd_file(TARGET mazescr DESTINATION reactos/system32 FOR all)
|