From: Michael Gottesman Date: Tue, 27 Aug 2013 04:40:12 +0000 (+0000) Subject: Use set to create CLANG_ORDER_FILE instead of option which implies a bool value. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=54b00127b92688ee1ee2f2ee559f9cca63e67fcd;p=clang Use set to create CLANG_ORDER_FILE instead of option which implies a bool value. Patch by Edoardo P. . git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@189311 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 35379a278a..ab35749fce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -354,5 +354,5 @@ endif() set(BUG_REPORT_URL "http://llvm.org/bugs/" CACHE STRING "Default URL where bug reports are to be submitted.") -option(CLANG_ORDER_FILE - "Order file to use when compiling clang in order to improve startup time." "") +set(CLANG_ORDER_FILE "" CACHE FILEPATH + "Order file to use when compiling clang in order to improve startup time.")