[PRINTING] Add x64 print environment keys and folders

This commit is contained in:
Timo Kreuzer 2018-03-08 03:02:56 +01:00
parent 0ddf0a06c3
commit c735dbac35
4 changed files with 15 additions and 1 deletions

View file

@ -15,4 +15,8 @@ set_module_type(winprint win32dll UNICODE)
target_link_libraries(winprint wine)
add_importlibs(winprint spoolss msvcrt kernel32 ntdll)
add_pch(winprint precomp.h SOURCE)
add_cd_file(TARGET winprint DESTINATION reactos/system32/spool/prtprocs/w32x86 FOR all)
if(ARCH STREQUAL "amd64")
add_cd_file(TARGET winprint DESTINATION reactos/system32/spool/prtprocs/x64 FOR all)
else()
add_cd_file(TARGET winprint DESTINATION reactos/system32/spool/prtprocs/w32x86 FOR all)
endif()