2011-05-16 13:12:07 +00:00
|
|
|
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_definitions(-D__WINESRC__)
|
2011-06-26 21:29:55 +00:00
|
|
|
spec2def(tapi32.dll tapi32.spec)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
assisted.c
|
|
|
|
internal.c
|
|
|
|
line.c
|
|
|
|
phone.c
|
2014-02-10 12:19:56 +00:00
|
|
|
precomp.h
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/tapi32_stubs.c)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(tapi32 MODULE
|
2014-02-10 12:19:56 +00:00
|
|
|
${SOURCE}
|
2011-05-16 13:12:07 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/tapi32.def)
|
|
|
|
|
2013-02-23 16:45:48 +00:00
|
|
|
set_module_type(tapi32 win32dll)
|
2011-05-16 13:12:07 +00:00
|
|
|
target_link_libraries(tapi32 wine)
|
2013-09-28 15:07:20 +00:00
|
|
|
add_importlibs(tapi32 advapi32 msvcrt kernel32 ntdll)
|
2014-02-10 12:19:56 +00:00
|
|
|
add_pch(tapi32 precomp.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET tapi32 DESTINATION reactos/system32 FOR all)
|