reactos/dll/directx/wine/msdmo/CMakeLists.txt
Amine Khaldi ddb3d908c9 * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
2014-02-22 10:31:26 +00:00

22 lines
541 B
CMake

add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
spec2def(msdmo.dll msdmo.spec)
list(APPEND SOURCE
dmoreg.c
dmort.c
precomp.h)
add_library(msdmo SHARED
${SOURCE}
stubs.c
rsrc.rc
${CMAKE_CURRENT_BINARY_DIR}/msdmo.def)
set_module_type(msdmo win32dll)
target_link_libraries(msdmo uuid wine mediaobj_guid)
add_importlibs(msdmo user32 advapi32 ole32 msvcrt kernel32 ntdll)
add_pch(msdmo precomp.h SOURCE)
add_cd_file(TARGET msdmo DESTINATION reactos/system32 FOR all)