terminal/src/host/exe/sources
Michael Niksa 8e67bb2d4f Merged PR 4641914: [Git2Git] Git Train: Merge of building/rs_onecore_dep_uxp/200504-1008 into official/rs_onecore_dep_uxp Retrieved from https://microsoft.visualstudio.com os OS official/rs_onecore_dep_uxp bbdf04608ba96c3f8ee06cf100428cde01f3df79
[Git2Git] Git Train: Merge of building/rs_onecore_dep_uxp/200504-1008 into official/rs_onecore_dep_uxp Retrieved from https://microsoft.visualstudio.com os OS official/rs_onecore_dep_uxp bbdf04608ba96c3f8ee06cf100428cde01f3df79

Related work items: #26071826
2020-05-05 22:47:08 +00:00

65 lines
1.8 KiB
Plaintext

!include ..\sources.inc
# -------------------------------------
# Windows Console
# - Console Host Core
# -------------------------------------
# This program provides the entry-point
# for when the Windows OS loader attempts to start a Win32 Console-type
# application that does not already have console handles attached.
# It will attempt to resolve the correct module for the OS platform and configuration
# and then pass control to that module for runtime services.
# -------------------------------------
# Program Information
# -------------------------------------
TARGETNAME = conhost
TARGETTYPE = PROGRAM
UMTYPE = windows
UMENTRY = wwinmain
TARGET_DESTINATION = retail
# -------------------------------------
# Build System Settings
# -------------------------------------
CETCOMPAT=1
# -------------------------------------
# Sources, Headers, and Libraries
# -------------------------------------
SOURCES = \
$(SOURCES) \
..\exemain.cpp \
..\res.rc \
# -------------------------------------
# Side-by-side Manifesting
# -------------------------------------
SYSTEM_COMPATIBLE_ASSEMBLY_VERSION_00 = $(SYSTEM_COMPATIBLE_ASSEMBLY_VERSION).0.0
SXS_MANIFEST_DEFINES = \
$(SXS_MANIFEST_DEFINES) \
-DSYSTEM_COMPATIBLE_ASSEMBLY_VERSION_00_A="\"$(SYSTEM_COMPATIBLE_ASSEMBLY_VERSION_00)\"" \
SXS_ASSEMBLY_NAME = Microsoft.Console.Host.Core
SXS_ASSEMBLY_LANGUAGE_INDEPENDENT = 1
SXS_MANIFEST = conhost.exe.Manifest
SXS_MANIFEST_IN_RESOURCES = 1
SXS_NO_BINPLACE = 1
CMI_USE_VERSION_XML = 1
O_MANIFESTS= \
$(OBJ_PATH)\$(O)\SystemDefault.man \
conhost.man
INCLUDES= \
$(INCLUDES); \
$(OBJ_PATH)\$(O); \
NTTARGETFILE0=\
$(O_MANIFESTS)