2012-12-12 12:48:52 +00:00
|
|
|
|
2015-11-17 12:54:52 +00:00
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
|
2013-09-13 22:50:10 +00:00
|
|
|
add_definitions(
|
|
|
|
-D__WINESRC__
|
|
|
|
-D_ATL_VER=_ATL_VER_100)
|
2012-12-12 12:48:52 +00:00
|
|
|
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2012-12-12 12:48:52 +00:00
|
|
|
spec2def(atl100.dll atl100.spec ADD_IMPORTLIB)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
2014-04-26 18:49:54 +00:00
|
|
|
${REACTOS_SOURCE_DIR}/dll/win32/atl/atl.c
|
|
|
|
${REACTOS_SOURCE_DIR}/dll/win32/atl/atl_ax.c
|
|
|
|
${REACTOS_SOURCE_DIR}/dll/win32/atl/registrar.c
|
2014-02-10 12:19:56 +00:00
|
|
|
precomp.h
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/atl100_stubs.c)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(atl100 MODULE
|
2014-02-10 12:19:56 +00:00
|
|
|
${SOURCE}
|
2012-12-12 12:48:52 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/atl100.def)
|
|
|
|
|
|
|
|
set_module_type(atl100 win32dll)
|
|
|
|
target_link_libraries(atl100 uuid wine)
|
2015-11-17 12:54:52 +00:00
|
|
|
add_importlibs(atl100 ole32 oleaut32 user32 gdi32 advapi32 advapi32_vista shlwapi msvcrt kernel32 ntdll)
|
2014-02-10 12:19:56 +00:00
|
|
|
add_pch(atl100 precomp.h SOURCE)
|
2012-12-12 12:48:52 +00:00
|
|
|
add_cd_file(TARGET atl100 DESTINATION reactos/system32 FOR all)
|