[SHELL32_NEW]
[reactos.git] / base / applications / network / dwnl / CMakeLists.txt
1 add_definitions(-D_DLL -D__USE_CRTIMP)
2
3 set_unicode()
4
5 add_executable(dwnl dwnl.c)
6
7 set_module_type(dwnl win32cui)
8
9 target_link_libraries(dwnl uuid)
10
11 add_importlibs(dwnl urlmon wininet msvcrt kernel32)
12 if(MSVC)
13 add_importlibs(dwnl ntdll)
14 endif()
15
16 add_cd_file(TARGET dwnl DESTINATION reactos/system32 FOR all)