mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
21 lines
491 B
CMake
21 lines
491 B
CMake
|
|
add_definitions(-DUSE_WINE_TODOS)
|
|
|
|
list(APPEND SOURCE
|
|
filedlg.c
|
|
finddlg.c
|
|
fontdlg.c
|
|
itemdlg.c
|
|
printdlg.c
|
|
precomp.h)
|
|
|
|
add_executable(comdlg32_winetest
|
|
${SOURCE}
|
|
testlist.c
|
|
rsrc.rc)
|
|
|
|
target_link_libraries(comdlg32_winetest uuid)
|
|
set_module_type(comdlg32_winetest win32cui)
|
|
add_importlibs(comdlg32_winetest comdlg32 winspool user32 gdi32 ole32 shell32 msvcrt kernel32)
|
|
add_pch(comdlg32_winetest precomp.h SOURCE)
|
|
add_rostests_file(TARGET comdlg32_winetest)
|