2011-05-16 13:12:07 +00:00
|
|
|
|
2012-12-22 10:47:06 +00:00
|
|
|
add_definitions(-D__WINESRC__)
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2012-03-07 21:21:27 +00:00
|
|
|
spec2def(inetcomm.dll inetcomm.spec ADD_IMPORTLIB)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
imaptransport.c
|
|
|
|
inetcomm_main.c
|
|
|
|
internettransport.c
|
|
|
|
mimeintl.c
|
|
|
|
mimeole.c
|
|
|
|
pop3transport.c
|
2017-03-05 21:33:13 +00:00
|
|
|
protocol.c
|
2011-05-16 13:12:07 +00:00
|
|
|
smtptransport.c
|
2018-03-15 11:36:29 +00:00
|
|
|
precomp.h)
|
2014-02-10 12:19:56 +00:00
|
|
|
|
|
|
|
add_library(inetcomm SHARED
|
|
|
|
${SOURCE}
|
2013-12-25 14:46:47 +00:00
|
|
|
guid.c
|
2014-02-10 12:19:56 +00:00
|
|
|
inetcomm.rc
|
2011-05-16 13:12:07 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/inetcomm_stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/inetcomm.def)
|
|
|
|
|
|
|
|
set_module_type(inetcomm win32dll)
|
|
|
|
target_link_libraries(inetcomm uuid wine)
|
2017-03-05 21:33:13 +00:00
|
|
|
add_importlibs(inetcomm ole32 oleaut32 ws2_32 user32 propsys urlmon msvcrt kernel32 ntdll)
|
2018-03-15 11:36:29 +00:00
|
|
|
add_pch(inetcomm precomp.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET inetcomm DESTINATION reactos/system32 FOR all)
|