terminal/src/buffer/out/sources.inc
Dustin Howett efc9116830 Merged PR 6142815: OS build fixes on top of 94d39b758
Retrieved from https://microsoft.visualstudio.com os.2020 OS official/rs_wdx_dxp_windev df66d8161fb17594c817c9ca88a559a8ea006194
2021-06-10 15:52:14 +00:00

53 lines
1.4 KiB
PHP

!include ..\..\..\project.inc
# -------------------------------------
# Windows Console
# - Console Output Buffer
# -------------------------------------
# This module encapsulates the objects used to manage
# the output buffer of the console
# -------------------------------------
# Compiler Settings
# -------------------------------------
# Warning 4201: nonstandard extension used: nameless struct/union
MSC_WARNING_LEVEL = $(MSC_WARNING_LEVEL) /wd4201
# -------------------------------------
# Build System Settings
# -------------------------------------
# Code in the OneCore depot automatically excludes default Win32 libraries.
# -------------------------------------
# Sources, Headers, and Libraries
# -------------------------------------
PRECOMPILED_CXX = 1
PRECOMPILED_INCLUDE = ..\precomp.h
SOURCES= \
..\AttrRow.cpp \
..\cursor.cpp \
..\OutputCell.cpp \
..\OutputCellIterator.cpp \
..\OutputCellRect.cpp \
..\OutputCellView.cpp \
..\Row.cpp \
..\TextColor.cpp \
..\TextAttribute.cpp \
..\textBuffer.cpp \
..\textBufferCellIterator.cpp \
..\textBufferTextIterator.cpp \
..\CharRow.cpp \
..\CharRowCell.cpp \
..\CharRowCellReference.cpp \
..\UnicodeStorage.cpp \
..\search.cpp \
INCLUDES= \
$(INCLUDES); \
..; \