From 54b00127b92688ee1ee2f2ee559f9cca63e67fcd Mon Sep 17 00:00:00 2001 From: Michael Gottesman Date: Tue, 27 Aug 2013 04:40:12 +0000 Subject: [PATCH] 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 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.") -- 2.40.0