mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
23373acbb9
There is no need to compile our DLLs as shared libraries since we are managing symbols exports and imports through spec files. On my system, this reduces the configure-time by a factor of two.
27 lines
657 B
CMake
27 lines
657 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
spec2def(dmusic.dll dmusic.spec)
|
|
|
|
list(APPEND SOURCE
|
|
buffer.c
|
|
clock.c
|
|
collection.c
|
|
dmobject.c
|
|
dmusic.c
|
|
dmusic_main.c
|
|
download.c
|
|
instrument.c
|
|
port.c
|
|
precomp.h)
|
|
|
|
add_library(dmusic MODULE
|
|
${SOURCE}
|
|
version.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/dmusic.def)
|
|
|
|
set_module_type(dmusic win32dll)
|
|
target_link_libraries(dmusic dxguid uuid wine)
|
|
add_importlibs(dmusic ole32 advapi32 winmm dsound user32 msvcrt kernel32 ntdll)
|
|
add_pch(dmusic precomp.h SOURCE)
|
|
add_cd_file(TARGET dmusic DESTINATION reactos/system32 FOR all)
|