2011-05-16 13:12:07 +00:00
|
|
|
|
2018-09-18 21:55:44 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/conutils)
|
|
|
|
|
|
|
|
add_executable(dwnl dwnl.c dwnl.rc)
|
2011-09-03 19:11:44 +00:00
|
|
|
set_module_type(dwnl win32cui UNICODE)
|
2018-09-18 21:55:44 +00:00
|
|
|
target_link_libraries(dwnl conutils ${PSEH_LIB})
|
2011-05-16 13:12:07 +00:00
|
|
|
target_link_libraries(dwnl uuid)
|
2018-09-18 21:55:44 +00:00
|
|
|
add_importlibs(dwnl urlmon wininet msvcrt user32 kernel32)
|
2014-10-17 23:28:29 +00:00
|
|
|
|
2011-05-16 13:12:07 +00:00
|
|
|
if(MSVC)
|
2011-06-13 15:31:11 +00:00
|
|
|
add_importlibs(dwnl ntdll)
|
2011-05-16 13:12:07 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_cd_file(TARGET dwnl DESTINATION reactos/system32 FOR all)
|