* Sync up to trunk head (r64829).
[reactos.git] / dll / win32 / atl100 / CMakeLists.txt
1
2 add_definitions(
3 -D__WINESRC__
4 -D_ATL_VER=_ATL_VER_100)
5
6 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
7 spec2def(atl100.dll atl100.spec ADD_IMPORTLIB)
8
9 list(APPEND SOURCE
10 ${REACTOS_SOURCE_DIR}/dll/win32/atl/atl.c
11 ${REACTOS_SOURCE_DIR}/dll/win32/atl/atl_ax.c
12 ${REACTOS_SOURCE_DIR}/dll/win32/atl/registrar.c
13 precomp.h
14 ${CMAKE_CURRENT_BINARY_DIR}/atl100_stubs.c)
15
16 add_library(atl100 SHARED
17 ${SOURCE}
18 ${CMAKE_CURRENT_BINARY_DIR}/atl100.def)
19
20 set_module_type(atl100 win32dll)
21 target_link_libraries(atl100 uuid wine)
22 add_importlibs(atl100 ole32 oleaut32 user32 gdi32 advapi32 shlwapi msvcrt kernel32 ntdll)
23 add_pch(atl100 precomp.h SOURCE)
24 add_cd_file(TARGET atl100 DESTINATION reactos/system32 FOR all)