reactos/reactos/dll/directx/wine/dsound/CMakeLists.txt
Amine Khaldi 37ff67c8fc [CMAKE/CLANG]
* Link mingwex when needed because having it globally won't do.
CORE-8516

svn path=/trunk/; revision=64105
2014-09-10 15:56:48 +00:00

35 lines
740 B
CMake

add_definitions(
-D_WINE
-D_USE_MATH_DEFINES
-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
spec2def(dsound.dll dsound.spec ADD_IMPORTLIB)
add_library(dsound SHARED
buffer.c
capture.c
dsound.c
dsound_convert.c
dsound_main.c
duplex.c
mixer.c
primary.c
propset.c
sound3d.c
guid.c
version.rc
${CMAKE_CURRENT_BINARY_DIR}/dsound.def)
set_module_type(dsound win32dll)
target_link_libraries(dsound dxguid uuid wine)
if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
target_link_libraries(dsound mingwex)
endif()
add_importlibs(dsound winmm ole32 advapi32 user32 msvcrt kernel32 ntdll)
add_cd_file(TARGET dsound DESTINATION reactos/system32 FOR all)