2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
2011-06-26 21:29:55 +00:00
|
|
|
spec2def(msimtf.dll msimtf.spec)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
activeimmapp.c
|
|
|
|
main.c
|
2014-02-10 12:19:56 +00:00
|
|
|
precomp.h
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/msimtf_stubs.c)
|
|
|
|
|
|
|
|
add_library(msimtf SHARED
|
|
|
|
${SOURCE}
|
|
|
|
rsrc.rc
|
2011-05-16 13:12:07 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/msimtf.def)
|
|
|
|
|
|
|
|
set_module_type(msimtf win32dll)
|
|
|
|
target_link_libraries(msimtf uuid wine)
|
2013-09-22 16:32:59 +00:00
|
|
|
add_importlibs(msimtf imm32 msvcrt kernel32 ntdll)
|
2014-02-10 12:19:56 +00:00
|
|
|
add_pch(msimtf precomp.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET msimtf DESTINATION reactos/system32 FOR all)
|