summaryrefslogtreecommitdiff
path: root/clrfeatures.cmake
diff options
context:
space:
mode:
authorJohn Salem <josalem@microsoft.com>2019-06-04 09:09:59 -0700
committerAndrew Au <andrewau@microsoft.com>2019-06-04 09:09:59 -0700
commitb3ff5135ecba8d47cca9c02550d04e592b2e2310 (patch)
treed03dfe46096481855555fc71802445511e5b6acf /clrfeatures.cmake
parent8368b69bea1e70933f24a42cf626e90c1266cbfd (diff)
downloadcoreclr-b3ff5135ecba8d47cca9c02550d04e592b2e2310.tar.gz
coreclr-b3ff5135ecba8d47cca9c02550d04e592b2e2310.tar.bz2
coreclr-b3ff5135ecba8d47cca9c02550d04e592b2e2310.zip
Update to AutoTrace (#24936)
* * Add license headers to autotrace.h|cpp * use W() macro for getting correct string literal type * formalize env vars to be COMPlus_* style * add documentation * modify cmake files to have the flag and set default value to 0 * Fix typo
Diffstat (limited to 'clrfeatures.cmake')
-rw-r--r--clrfeatures.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/clrfeatures.cmake b/clrfeatures.cmake
index bb4f09f2a3..0326762971 100644
--- a/clrfeatures.cmake
+++ b/clrfeatures.cmake
@@ -23,3 +23,7 @@ endif(NOT DEFINED FEATURE_INTERPRETER)
if(NOT DEFINED FEATURE_STANDALONE_GC)
set(FEATURE_STANDALONE_GC 1)
endif(NOT DEFINED FEATURE_STANDALONE_GC)
+
+if(NOT DEFINED FEATURE_AUTO_TRACE)
+ set(FEATURE_AUTO_TRACE 0)
+endif(NOT DEFINED FEATURE_AUTO_TRACE)