reactos/dll/win32/msimtf/CMakeLists.txt
Amine Khaldi ddb3d908c9 * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
2014-02-22 10:31:26 +00:00

22 lines
560 B
CMake

add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/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)