mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
conutils\pager.c(658): warning C4267: '=': conversion from 'size_t' to 'DWORD', possible loss of data conutils\outstream.c(179),(263): warning C4267: '=': conversion from 'size_t' to 'DWORD', possible loss of data conutils\outstream.c(433): warning C4267: '=': conversion from 'size_t' to 'INT', possible loss of data
18 lines
395 B
CMake
18 lines
395 B
CMake
|
|
list(APPEND SOURCE
|
|
# instream.c
|
|
outstream.c
|
|
pager.c
|
|
screen.c
|
|
stream.c
|
|
utils.c
|
|
# conutils.h
|
|
)
|
|
|
|
add_library(conutils STATIC ${SOURCE})
|
|
# add_pch(conutils conutils.h SOURCE)
|
|
add_dependencies(conutils xdk)
|
|
target_include_directories(conutils INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_link_libraries(conutils ${PSEH_LIB})
|
|
add_importlibs(conutils msvcrt kernel32)
|