mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 19:41:57 +00:00
10 lines
274 B
CMake
10 lines
274 B
CMake
|
|
||
|
add_executable(touch err.c touch.c touch.rc)
|
||
|
target_link_libraries(touch getopt)
|
||
|
set_module_type(touch win32cui)
|
||
|
add_importlibs(touch msvcrt kernel32)
|
||
|
if(MSVC)
|
||
|
target_link_libraries(touch oldnames)
|
||
|
endif()
|
||
|
|
||
|
add_cd_file(TARGET touch DESTINATION reactos/system32 FOR all)
|