terminal/src/terminal/parser/ft_fuzzer/sources
Dustin L. Howett (MSFT) 86685079ec
build: move oss required to build conhost out of dep/ (#5451)
This change is necessary as the dep/ folder is not synced into the
Windows source tree.

I've also added a build rule producing a lib for {fmt}.

This will be required for our next OS ingestion.
2020-04-21 14:43:09 -07:00

77 lines
2.1 KiB
Plaintext

# -------------------------------------
# Windows Console
# - Console Virtual Terminal Parser Fuzzer
# -------------------------------------
# This program will generate fuzz input for the parsing engine
# and is to be used in conjunction with the fuzz wrapper tool.
# -------------------------------------
# Program Information
# -------------------------------------
TARGETNAME = VTCommandFuzzer
TARGETTYPE = PROGRAM
UMTYPE = console
UMENTRY = wmain
TARGET_DESTINATION = UnitTests
DLLDEF =
TEST_CODE = 1
# -------------------------------------
# CRT Configuration
# -------------------------------------
USE_UNICRT = 1
USE_MSVCRT = 1
USE_STL = 1
STL_VER = STL_VER_CURRENT
USE_NATIVE_EH = 1
BUILD_FOR_CORESYSTEM = 1
# -------------------------------------
# Preprocessor Settings
# -------------------------------------
UNICODE = 1
C_DEFINES = $(C_DEFINES) -DUNICODE -D_UNICODE
# -------------------------------------
# Compiler Settings
# -------------------------------------
MSC_WARNING_LEVEL = /W4 /WX
# -------------------------------------
# Build System Settings
# -------------------------------------
# Code in the OneCore depot automatically excludes default Win32 libraries.
CONSOLE_SRC_PATH = $(PROJECT_ROOT)\core\console\open\src
# -------------------------------------
# Sources, Headers, and Libraries
# -------------------------------------
PRECOMPILED_CXX = 1
PRECOMPILED_INCLUDE = stdafx.h
SOURCES = \
VTCommandFuzzer.cpp \
INCLUDES = \
..\..\..\inc; \
$(CONSOLE_SRC_PATH)\..\oss\dynamic_bitset; \
$(CONSOLE_SRC_PATH)\..\oss\libpopcnt; \
$(CONSOLE_SRC_PATH)\..\oss\chromium; \
$(CONSOLE_SRC_PATH)\..\oss\fmt\include; \
$(INCLUDES) \
TARGETLIBS = \
$(TARGETLIBS) \
$(ONECORE_EXTERNAL_SDK_LIB_VPATH_L)\onecore.lib \
$(ONECORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\onecore_internal.lib \