1
2include_directories(${REACTOS_SOURCE_DIR}/win32ss/printing/include)
3
4list(APPEND SOURCE
5    fpEnumPrinters.c
6    fpGetPrintProcessorDirectory.c
7    fpSetJob.c
8    main.c)
9
10add_library(localspl_apitest.dll MODULE ${SOURCE})
11target_link_libraries(localspl_apitest.dll wine ${PSEH_LIB})
12set_module_type(localspl_apitest.dll win32dll)
13add_importlibs(localspl_apitest.dll spoolss advapi32 msvcrt kernel32 ntdll)
14set_target_properties(localspl_apitest.dll PROPERTIES SUFFIX "")
15add_rostests_file(TARGET localspl_apitest.dll)
16