1 2include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/conutils) 3 4add_executable(tree tree.c tree.rc) 5set_module_type(tree win32cui UNICODE) 6target_link_libraries(tree conutils ${PSEH_LIB}) 7add_importlibs(tree msvcrt kernel32) 8set_target_properties(tree PROPERTIES SUFFIX ".com") 9add_cd_file(TARGET tree DESTINATION reactos/system32 FOR all) 10