mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
24 lines
544 B
CMake
24 lines
544 B
CMake
|
|
add_definitions(-DUSE_WINE_TODOS)
|
|
|
|
list(APPEND SOURCE
|
|
filedlg.c
|
|
finddlg.c
|
|
fontdlg.c
|
|
itemdlg.c
|
|
printdlg.c)
|
|
|
|
list(APPEND PCH_SKIP_SOURCE
|
|
testlist.c)
|
|
|
|
add_executable(comdlg32_winetest
|
|
${SOURCE}
|
|
${PCH_SKIP_SOURCE}
|
|
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 "${PCH_SKIP_SOURCE}")
|
|
add_rostests_file(TARGET comdlg32_winetest)
|