Merge my current work done on the kd++ branch:
[reactos.git] / reactos / dll / win32 / t2embed / CMakeLists.txt
1
2
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4
5 spec2def(t2embed.dll t2embed.spec)
6
7 list(APPEND SOURCE
8 t2embed.c
9 t2embed.rc
10 ${CMAKE_CURRENT_BINARY_DIR}/t2embed_stubs.c
11 ${CMAKE_CURRENT_BINARY_DIR}/t2embed.def)
12
13 add_library(t2embed SHARED ${SOURCE})
14
15 set_module_type(t2embed win32dll UNICODE)
16
17 target_link_libraries(t2embed wine)
18
19 add_importlibs(t2embed gdi32 user32 advapi32 version msvcrt kernel32 ntdll)
20
21 add_cd_file(TARGET t2embed DESTINATION reactos/system32 FOR all)