2010-10-28 11:33:02 +00:00
|
|
|
|
|
|
|
ADD_INTERFACE_DEFINITIONS(atl_atliface_header atliface.idl)
|
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
|
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
|
2010-10-30 16:08:19 +00:00
|
|
|
spec2def(atl.dll atl.spec)
|
2010-10-28 11:33:02 +00:00
|
|
|
|
|
|
|
add_library(atl SHARED
|
|
|
|
atl_ax.c
|
|
|
|
atl_main.c
|
|
|
|
registrar.c
|
2010-10-30 16:08:19 +00:00
|
|
|
rsrc.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/atl.def)
|
2010-10-28 11:33:02 +00:00
|
|
|
|
|
|
|
set_module_type(atl win32dll)
|
|
|
|
|
|
|
|
target_link_libraries(atl
|
|
|
|
uuid
|
|
|
|
wine)
|
|
|
|
|
|
|
|
add_importlibs(atl
|
|
|
|
msvcrt
|
|
|
|
ole32
|
|
|
|
oleaut32
|
|
|
|
user32
|
|
|
|
advapi32
|
|
|
|
gdi32
|
|
|
|
kernel32
|
|
|
|
ntdll)
|
|
|
|
|
2010-10-30 16:08:19 +00:00
|
|
|
add_dependencies(atl atl_atliface_header)
|
2010-10-30 09:53:53 +00:00
|
|
|
add_cab_target(atl 1)
|