mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
7bffb70353
WinSpool : Implement missing API. Sync/Port from wine. Setting it to fast track for needed testing of the later GDI code. Leaving Fix-me debug prints on. Local tree has WinSpool_winetest turned on. So no debug noise during normal ReactOS operation. SpoolSS : Reordered header types. Have more Spl function to be added while SpoolSV is being coded to forward to LocalSpl. Based on wine and old research from the GDI code.
38 lines
1 KiB
CMake
38 lines
1 KiB
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/idl)
|
|
add_rpc_files(client ${REACTOS_SOURCE_DIR}/sdk/include/reactos/idl/winspool.idl)
|
|
spec2def(winspool.drv winspool.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
../marshalling.c
|
|
devmode.c
|
|
forms.c
|
|
jobs.c
|
|
main.c
|
|
monitors.c
|
|
ports.c
|
|
printerdata.c
|
|
printerdrivers.c
|
|
printers.c
|
|
printprocessors.c
|
|
printproviders.c
|
|
spoolfile.c
|
|
utils.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/winspool_c.c)
|
|
|
|
list(APPEND PCH_SKIP_SOURCE
|
|
${CMAKE_CURRENT_BINARY_DIR}/winspool_stubs.c)
|
|
|
|
add_library(winspool MODULE
|
|
${SOURCE}
|
|
${PCH_SKIP_SOURCE}
|
|
winspool.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/winspool.def)
|
|
|
|
set_target_properties(winspool PROPERTIES SUFFIX ".drv")
|
|
set_module_type(winspool win32dll UNICODE)
|
|
target_link_libraries(winspool wine ${PSEH_LIB})
|
|
add_importlibs(winspool advapi32 gdi32 user32 rpcrt4 msvcrt kernel32 ntdll)
|
|
add_pch(winspool precomp.h "${PCH_SKIP_SOURCE}")
|
|
add_cd_file(TARGET winspool DESTINATION reactos/system32 FOR all)
|