From: NAKAMURA Takumi Date: Mon, 20 Jan 2014 17:05:49 +0000 (+0000) Subject: [CMake] LLVMProcessSources.cmake: Add include(CMakeParseArguments). X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=95dd2f4e8d93ed339eb6dc815b03bdc2f877992e;p=oota-llvm.git [CMake] LLVMProcessSources.cmake: Add include(CMakeParseArguments). I didn't realize that cmake_parse_arguments() would require explicit inclusion. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199674 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/modules/LLVMProcessSources.cmake b/cmake/modules/LLVMProcessSources.cmake index 4ad97575071..2d88abfd752 100644 --- a/cmake/modules/LLVMProcessSources.cmake +++ b/cmake/modules/LLVMProcessSources.cmake @@ -1,4 +1,5 @@ include(AddFileDependencies) +include(CMakeParseArguments) function(llvm_replace_compiler_option var old new) # Replaces a compiler option or switch `old' in `var' by `new'.