mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
21 lines
564 B
CMake
21 lines
564 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
spec2def(msimtf.dll msimtf.spec)
|
|
|
|
list(APPEND SOURCE
|
|
activeimmapp.c
|
|
main.c
|
|
precomp.h
|
|
${CMAKE_CURRENT_BINARY_DIR}/msimtf_stubs.c)
|
|
|
|
add_library(msimtf SHARED
|
|
${SOURCE}
|
|
rsrc.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/msimtf.def)
|
|
|
|
set_module_type(msimtf win32dll)
|
|
target_link_libraries(msimtf uuid wine)
|
|
add_importlibs(msimtf imm32 msvcrt kernel32 ntdll)
|
|
add_pch(msimtf precomp.h SOURCE)
|
|
add_cd_file(TARGET msimtf DESTINATION reactos/system32 FOR all)
|