reactos/dll/win32/dwmapi/CMakeLists.txt
Sylvain Petreolle 30922e7435 [CMAKE]
Fix dwmapi, mpr and msxml3.
Ordinal stubs were given the same internal names as Wine.

svn path=/branches/cmake-bringup/; revision=49881
2010-12-01 13:36:16 +00:00

23 lines
426 B
CMake

add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
set_rc_compiler()
spec2def(dwmapi.dll dwmapi.spec)
list(APPEND SOURCE
dwmapi_main.c
version.rc
${CMAKE_CURRENT_BINARY_DIR}/dwmapi.def)
add_library(dwmapi SHARED ${SOURCE})
set_module_type(dwmapi win32dll)
target_link_libraries(dwmapi wine)
add_importlibs(dwmapi msvcrt kernel32 ntdll)
add_cab_target(dwmapi 1)