diff options
author | Chris Bieneman <beanz@apple.com> | 2016-04-28 21:16:45 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-04-28 21:16:45 +0000 |
commit | 257fe3ab9920985740f03423ddd61228dbd2d02b (patch) | |
tree | bf58ba279f20d81882bd81ed885242e1d5360ebd | |
parent | 1be37a3522b47f583675765d7cc727c7a502a590 (diff) | |
download | bcm5719-llvm-257fe3ab9920985740f03423ddd61228dbd2d02b.tar.gz bcm5719-llvm-257fe3ab9920985740f03423ddd61228dbd2d02b.zip |
[CMake] Adding another missing include. NFC.
This also works fine today, but will break with my upcoming refactoring.
llvm-svn: 267941
-rw-r--r-- | compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake b/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake index 0c1637d627a..5f35c6a4520 100644 --- a/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake +++ b/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake @@ -1,3 +1,5 @@ +include(CMakeParseArguments) + # On OS X SDKs can be installed anywhere on the base system and xcode-select can # set the default Xcode to use. This function finds the SDKs that are present in # the current Xcode. |