* Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
[reactos.git] / dll / win32 / tapi32 / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
3 add_definitions(-D__WINESRC__)
4 spec2def(tapi32.dll tapi32.spec)
5
6 list(APPEND SOURCE
7 assisted.c
8 internal.c
9 line.c
10 phone.c
11 precomp.h
12 ${CMAKE_CURRENT_BINARY_DIR}/tapi32_stubs.c)
13
14 add_library(tapi32 SHARED
15 ${SOURCE}
16 ${CMAKE_CURRENT_BINARY_DIR}/tapi32.def)
17
18 set_module_type(tapi32 win32dll)
19 target_link_libraries(tapi32 wine)
20 add_importlibs(tapi32 advapi32 msvcrt kernel32 ntdll)
21 add_pch(tapi32 precomp.h SOURCE)
22 add_cd_file(TARGET tapi32 DESTINATION reactos/system32 FOR all)