mirror of
https://github.com/reactos/reactos
synced 2025-10-06 00:12:51 +02: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.
28 lines
679 B
CMake
28 lines
679 B
CMake
|
|
add_definitions(-DWINETEST_USE_DBGSTR_LONGLONG)
|
|
|
|
list(APPEND SOURCE
|
|
avisplitter.c
|
|
dsoundrender.c
|
|
filtergraph.c
|
|
filtermapper.c
|
|
memallocator.c
|
|
misc.c
|
|
mpegsplit.c
|
|
referenceclock.c
|
|
videorenderer.c
|
|
testlist.c)
|
|
|
|
add_idl_headers(quartz_test_idlheader fil_data.idl)
|
|
add_executable(quartz_winetest ${SOURCE} rsrc.rc)
|
|
target_link_libraries(quartz_winetest uuid)
|
|
add_dependencies(quartz_winetest dxsdk quartz_test_idlheader)
|
|
set_module_type(quartz_winetest win32cui)
|
|
add_importlibs(quartz_winetest ole32 oleaut32 advapi32 user32 msvcrt kernel32)
|
|
|
|
if(MSVC)
|
|
add_importlibs(quartz_winetest ntdll)
|
|
endif()
|
|
|
|
add_rostests_file(TARGET quartz_winetest)
|