mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 01:05:42 +00:00

- Move sdk\include\reactos\wine to sdk\include\wine - Reorder the directories in include_directories() to be closer to alphabetical. This should make it easier to determine what global include directories can be removed in the future.
25 lines
483 B
CMake
25 lines
483 B
CMake
|
|
remove_definitions(-D_WIN32_WINNT=0x502 -DWINVER=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600 -DWINVER=0x600 -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)
|