reactos/rostests/apitests/winprint/CMakeLists.txt
Colin Finck 5fd4223870 [WINPRINT_APITEST]
Load all functions to test dynamically from either winprint.dll in the Print Processor Directory (for ReactOS and NT6) or localspl.dll in the system path (for NT5).
Should fix winprint_apitest on ReactOS and Windows Server 2003.

svn path=/trunk/; revision=73247
2016-11-17 21:24:07 +00:00

12 lines
359 B
CMake

list(APPEND SOURCE
EnumPrintProcessorDatatypesW.c
main.c
testlist.c)
add_executable(winprint_apitest ${SOURCE})
target_link_libraries(winprint_apitest wine ${PSEH_LIB})
set_module_type(winprint_apitest win32cui)
add_importlibs(winprint_apitest winspool msvcrt kernel32 ntdll)
add_cd_file(TARGET winprint_apitest DESTINATION reactos/bin FOR all)