mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
10 lines
262 B
CMake
10 lines
262 B
CMake
#add_definitions(-DLINUX_OUTPUT)
|
|
|
|
add_executable(uptime uptime.c uptime.rc)
|
|
set_module_type(uptime win32cui)
|
|
add_importlibs(uptime msvcrt kernel32)
|
|
if(MSVC)
|
|
add_importlibs(uptime ntdll)
|
|
endif()
|
|
add_cd_file(TARGET uptime DESTINATION reactos/system32 FOR all)
|