reactos/dll/win32/mciwave/CMakeLists.txt
Jérôme Gardou 4ee1da42f1 [CMAKE]
- rewrite spec2def macro because
1. cmake gracefully handles def files as source files
2. cmake gracefully handles autogenerated files as source
3. it did not take into account the fact that all shared libraries haven't the .dll extension

svn path=/branches/cmake-bringup/; revision=49358
2010-10-30 16:08:19 +00:00

20 lines
476 B
CMake

add_definitions(-D__WINESRC__)
add_definitions(-D_DLL -D__USE_CRTIMP)
add_definitions(-D_WINE)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
spec2def(mciwave.dll mciwave.spec)
add_library(mciwave SHARED mciwave.c
${CMAKE_CURRENT_BINARY_DIR}/mciwave.def)
set_entrypoint(mciwave 0)
target_link_libraries(mciwave wine)
add_importlibs(mciwave winmm user32 msvcrt kernel32 ntdll)
add_dependencies(mciwave psdk buildno_header)
add_cab_target(mciwave 1)