-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsources.inc
More file actions
47 lines (37 loc) · 1.19 KB
/
Copy pathsources.inc
File metadata and controls
47 lines (37 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
!include ..\..\project.inc
# -------------------------------------
# Windows Console
# - Console Types Library
# -------------------------------------
# This module encapsulates types and helpers that are common
# across the entire console project
# -------------------------------------
# Preprocessor Settings
# -------------------------------------
C_DEFINES = $(C_DEFINES) -DBUILD_ONECORE_INTERACTIVITY
# -------------------------------------
# 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= \
..\CodepointWidthDetector.cpp \
..\IInputEvent.cpp \
..\FocusEvent.cpp \
..\GlyphWidth.cpp \
..\KeyEvent.cpp \
..\MenuEvent.cpp \
..\ModifierKeyState.cpp \
..\MouseEvent.cpp \
..\Viewport.cpp \
..\WindowBufferSizeEvent.cpp \
..\convert.cpp \
..\Utf16Parser.cpp \
..\utils.cpp \
INCLUDES= \
$(INCLUDES); \
..; \