diff options
author | Jonghyun Park <parjong@gmail.com> | 2017-04-26 03:40:40 +0900 |
---|---|---|
committer | Bruce Forstall <brucefo@microsoft.com> | 2017-04-25 11:40:40 -0700 |
commit | c425377bb175f5ed59c15fcc7aa4b82fa09b0a8b (patch) | |
tree | 08c5f582a1fe728bb5b33a1117faa9ab5a85129f /clrfeatures.cmake | |
parent | 3ec65c1b15ad044f2dc935899bf86ba4ade3c47f (diff) | |
download | coreclr-c425377bb175f5ed59c15fcc7aa4b82fa09b0a8b.tar.gz coreclr-c425377bb175f5ed59c15fcc7aa4b82fa09b0a8b.tar.bz2 coreclr-c425377bb175f5ed59c15fcc7aa4b82fa09b0a8b.zip |
Allow FEATURE_INTERPRETER to be enabled by command-line option (#11188)
* Allow FEATURE_INTERPRETER to be enabled by command-line option
* Set FEATURE_INTERPRETER as 0
Diffstat (limited to 'clrfeatures.cmake')
-rw-r--r-- | clrfeatures.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clrfeatures.cmake b/clrfeatures.cmake index 9e986ef39e..9991b60ed7 100644 --- a/clrfeatures.cmake +++ b/clrfeatures.cmake @@ -21,3 +21,7 @@ if(NOT DEFINED FEATURE_DBGIPC) set(FEATURE_DBGIPC 1) endif() endif(NOT DEFINED FEATURE_DBGIPC) + +if(NOT DEFINED FEATURE_INTERPRETER) + set(FEATURE_INTERPRETER 0) +endif(NOT DEFINED FEATURE_INTERPRETER) |