terminal/src/buffer/out/sources.inc
Dustin Howett d4d59fa339 Initial release of the Windows Terminal source code
This commit introduces all of the Windows Terminal and Console Host source,
under the MIT license.
2019-05-02 15:29:04 -07:00

55 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 \
..\AttrRowIterator.cpp \
..\cursor.cpp \
..\OutputCell.cpp \
..\OutputCellIterator.cpp \
..\OutputCellRect.cpp \
..\OutputCellView.cpp \
..\Row.cpp \
..\RowCellIterator.cpp \
..\TextColor.cpp \
..\TextAttribute.cpp \
..\TextAttributeRun.cpp \
..\textBuffer.cpp \
..\textBufferCellIterator.cpp \
..\textBufferTextIterator.cpp \
..\CharRow.cpp \
..\CharRowCell.cpp \
..\CharRowCellReference.cpp \
..\UnicodeStorage.cpp \
INCLUDES= \
$(INCLUDES); \
..; \