1
2include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/conutils)
3
4add_executable(dwnl dwnl.c dwnl.rc)
5set_module_type(dwnl win32cui UNICODE)
6target_link_libraries(dwnl conutils ${PSEH_LIB})
7target_link_libraries(dwnl uuid)
8add_importlibs(dwnl urlmon wininet msvcrt user32 kernel32)
9
10if(MSVC)
11    add_importlibs(dwnl ntdll)
12endif()
13
14add_cd_file(TARGET dwnl DESTINATION reactos/system32 FOR all)
15