mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
14 lines
313 B
CMake
14 lines
313 B
CMake
|
|
||
|
set_rc_compiler()
|
||
|
|
||
|
add_executable(cylfrac
|
||
|
cylfrac.c
|
||
|
cylfrac.rc)
|
||
|
|
||
|
set_module_type(cylfrac win32gui UNICODE)
|
||
|
set_target_properties(cylfrac PROPERTIES SUFFIX ".scr")
|
||
|
|
||
|
add_importlibs(cylfrac user32 gdi32 opengl32 glu32 winmm msvcrt kernel32)
|
||
|
|
||
|
add_cd_file(TARGET cylfrac DESTINATION reactos/system32 FOR all)
|