reactos/rosapps/applications/cmdutils/winspool_print/CMakeLists.txt
Hermès Bélusca-Maïto 688b18d88c [WINSPOOL_PRINT]: Improve the test application:
- Do not hardcode the test file name, but instead take it from the command line (and add a Usage() function);
- Do not use a too large fixed-size buffer to read & print the file, but instead use a correctly-size buffer, get the file size, and then do a loop to read data from the file by chunks & send it to the printer.

svn path=/trunk/; revision=73047
2016-10-26 22:43:53 +00:00

5 lines
215 B
CMake

add_executable(winspool_print main.c)
set_module_type(winspool_print win32cui UNICODE)
add_importlibs(winspool_print winspool msvcrt kernel32)
add_cd_file(TARGET winspool_print DESTINATION reactos/system32 FOR all)