diff options
author | Chris Bieneman <beanz@apple.com> | 2016-06-09 21:29:55 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-06-09 21:29:55 +0000 |
commit | 28cdb677ed577efa1d38e1c7d24cfabe7204766b (patch) | |
tree | cd34855e28e81ef560c8d3b0e3dc25fb83558810 /clang/examples/PrintFunctionNames | |
parent | 17b3deeff3f0b246789c37911a445dbd4ad3456f (diff) | |
download | bcm5719-llvm-28cdb677ed577efa1d38e1c7d24cfabe7204766b.tar.gz bcm5719-llvm-28cdb677ed577efa1d38e1c7d24cfabe7204766b.zip |
[CMake] Cleaning up CMake feature gating on 2.8.12
CMake 2.8.12 introduced interface libraries and some related policies. This removes the conditional block because we're now past 2.8.12.
llvm-svn: 272312
Diffstat (limited to 'clang/examples/PrintFunctionNames')
-rw-r--r-- | clang/examples/PrintFunctionNames/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/examples/PrintFunctionNames/CMakeLists.txt b/clang/examples/PrintFunctionNames/CMakeLists.txt index e700281ab48..5a00d5036fb 100644 --- a/clang/examples/PrintFunctionNames/CMakeLists.txt +++ b/clang/examples/PrintFunctionNames/CMakeLists.txt @@ -12,7 +12,7 @@ endif() add_llvm_loadable_module(PrintFunctionNames PrintFunctionNames.cpp) if(LLVM_ENABLE_PLUGINS AND (WIN32 OR CYGWIN)) - target_link_libraries(PrintFunctionNames ${cmake_2_8_12_PRIVATE} + target_link_libraries(PrintFunctionNames PRIVATE clangAST clangBasic clangFrontend |