diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-01-20 17:05:49 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-01-20 17:05:49 +0000 |
commit | db2a4af37fadedecaf3e7b396af75f91757a0719 (patch) | |
tree | e13071e625f88d1a653a681e250f8ecd6cc950f3 /llvm/cmake/modules/LLVMProcessSources.cmake | |
parent | 929b1db276aa6735da81bc0bc206d0f81fe7c334 (diff) | |
download | bcm5719-llvm-db2a4af37fadedecaf3e7b396af75f91757a0719.tar.gz bcm5719-llvm-db2a4af37fadedecaf3e7b396af75f91757a0719.zip |
[CMake] LLVMProcessSources.cmake: Add include(CMakeParseArguments).
I didn't realize that cmake_parse_arguments() would require explicit inclusion.
llvm-svn: 199674
Diffstat (limited to 'llvm/cmake/modules/LLVMProcessSources.cmake')
-rw-r--r-- | llvm/cmake/modules/LLVMProcessSources.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/cmake/modules/LLVMProcessSources.cmake b/llvm/cmake/modules/LLVMProcessSources.cmake index 4ad97575071..2d88abfd752 100644 --- a/llvm/cmake/modules/LLVMProcessSources.cmake +++ b/llvm/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'. |