mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
8 lines
272 B
CMake
8 lines
272 B
CMake
|
|
add_executable(mode mode.c mode.rc)
|
|
set_module_type(mode win32cui UNICODE)
|
|
target_link_libraries(mode conutils)
|
|
add_importlibs(mode user32 msvcrt kernel32)
|
|
set_target_properties(mode PROPERTIES SUFFIX ".com")
|
|
add_cd_file(TARGET mode DESTINATION reactos/system32 FOR all)
|