mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
28 lines
569 B
CMake
28 lines
569 B
CMake
|
|
remove_definitions(-D_WIN32_WINNT=0x502 -DWINVER=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600 -DWINVER=0x600)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
list(APPEND SOURCE
|
|
audio.c
|
|
dispatch.c
|
|
dllfunc.c
|
|
enumpins.c
|
|
filter.c
|
|
mediatype.c
|
|
outputqueue.c
|
|
pin.c
|
|
pospass.c
|
|
qualitycontrol.c
|
|
renderer.c
|
|
seeking.c
|
|
transform.c
|
|
video.c
|
|
window.c
|
|
precomp.h)
|
|
|
|
add_library(strmbase ${SOURCE})
|
|
add_pch(strmbase precomp.h SOURCE)
|
|
add_dependencies(strmbase psdk dxsdk)
|