mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
4e697fee2c
As code grows, this will allow for better maintenance of the console stream code. In particular the input stream module will contain special code for handling TTYs, and this is something not all console programs will need. Having this code in a separate module will allow for the linker to possibly remove this code when it is unused.
17 lines
313 B
CMake
17 lines
313 B
CMake
|
|
list(APPEND SOURCE
|
|
# instream.c
|
|
outstream.c
|
|
pager.c
|
|
screen.c
|
|
stream.c
|
|
utils.c
|
|
# conutils.h
|
|
)
|
|
|
|
add_library(conutils ${SOURCE})
|
|
# add_pch(conutils conutils.h SOURCE)
|
|
add_dependencies(conutils xdk)
|
|
target_link_libraries(conutils ${PSEH_LIB})
|
|
add_importlibs(conutils msvcrt kernel32)
|