From 95dd2f4e8d93ed339eb6dc815b03bdc2f877992e Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Mon, 20 Jan 2014 17:05:49 +0000 Subject: [PATCH] [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 --- cmake/modules/LLVMProcessSources.cmake | 1 + 1 file changed, 1 insertion(+) 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'.