1 2add_executable(touch err.c touch.c touch.rc) 3target_compile_definitions(touch PRIVATE _CRT_DECLARE_NONSTDC_NAMES=1) 4target_link_libraries(touch getopt) 5set_module_type(touch win32cui) 6add_importlibs(touch msvcrt kernel32) 7if(MSVC) 8 target_link_libraries(touch oldnames) 9endif() 10 11add_cd_file(TARGET touch DESTINATION reactos/system32 FOR all) 12