Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Solutions/build.compact-signals.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemDefinitionGroup>
<ClCompile>
<PreprocessorDefinitions>%(PreprocessorDefinitions);CONFIG_CUSTOM_H="config-compact-signals.h"</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
</Project>
17 changes: 17 additions & 0 deletions lib/include/mat/config-compact-signals.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
//
#pragma once

#define EVTSDK_VERSION_PREFIX "EVT"
#if defined(_WIN32)
# define HAVE_MAT_SIGNALS
#endif
#define HAVE_MAT_EXP
#define HAVE_MAT_FIFOSTORAGE
#define HAVE_MAT_JSONHPP
#define HAVE_MAT_ZLIB
#define HAVE_MAT_STORAGE
#define HAVE_MAT_DEFAULT_HTTP_CLIENT
#define HAVE_CS3
4 changes: 3 additions & 1 deletion lib/include/mat/config-default.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
# if __has_include ("modules/utc/UtcTelemetrySystem.hpp")
# define HAVE_MAT_UTC
# endif
# if __has_include("modules/signals/Signals.hpp")
# define HAVE_MAT_SIGNALS
# endif
#endif
#endif
#if defined(HAVE_PRIVATE_MODULES)
Expand All @@ -29,7 +32,6 @@
#define HAVE_MAT_DEFAULT_HTTP_CLIENT
#define HAVE_MAT_LIVEEVENTINSPECTOR
#define HAVE_MAT_PRIVACYGUARD
#define HAVE_MAT_SIGNALS
//#define HAVE_MAT_DEFAULT_FILTER
#if defined(_WIN32) && !defined(_WINRT_DLL)
#define HAVE_MAT_NETDETECT
Expand Down