terminal/src/tsf/sources
Dan Thompson e2005ca5d7 Merged PR 6176782: [Git2Git] Get rid of dead build macros/#defines FE_IME, W32_SB, etc.
Retrieved from https://microsoft.visualstudio.com os.2020 OS official/rs_wdx_dxp_windev 40df712b33a40e76aeeac87f823bbb028d2e3972

Related work items: MSFT-32007459
2021-06-21 10:50:52 -07:00

60 lines
1.7 KiB
Plaintext

!include ..\project.inc
# -------------------------------------
# Windows Console
# - Console Text Services Framework
# -------------------------------------
# This module allows the Windows Console to interact with
# the "Text Services Framework" which provides Input Method Editors (IMEs).
# This is leveraged to allow the console to interact appropriately with
# Chinese, Japanese, and Korean languages which pop-up overlays to help
# insert the appropriate characters based on a series of keystrokes.
# -------------------------------------
# Program Information
# -------------------------------------
TARGETNAME = ConTSF
TARGETTYPE = LIBRARY
# -------------------------------------
# Preprocessor Settings
# -------------------------------------
C_DEFINES = $(C_DEFINES) -DWIN32 -DNT
# -------------------------------------
# Build System Settings
# -------------------------------------
# Code in the OneCore depot automatically excludes default Win32 libraries.
# Defines IME and Codepage support
# -------------------------------------
# Sources, Headers, and Libraries
# -------------------------------------
PRECOMPILED_CXX = 1
PRECOMPILED_INCLUDE = precomp.h
PRECOMPILED_PCH = precomp.pch
PRECOMPILED_OBJ = precomp.obj
SOURCES = \
contsf.cpp \
ConsoleTSF.cpp \
TfConvArea.cpp \
TfCatUtil.cpp \
TfDispAttr.cpp \
TfEditSession.cpp \
TfTxtevCb.cpp \
INCLUDES = \
$(INCLUDES); \
..\inc; \
$(ONECORE_PRIV_SDK_INC_PATH); \
$(MINWIN_INTERNAL_PRIV_SDK_INC_PATH_L); \
$(SDK_INC_PATH)\atl30; \
$(ONECORE_EXTERNAL_SDK_INC_PATH)\atl30; \