Skip to content

Commit 04ea680

Browse files
committed
[cmake] Fix build of attribute plugin example on Windows
Seems '${cmake_2_8_12_PRIVATE}' was removed a long time ago, so it should be just PRIVATE keyword here. Reviewed By: john.brawn Differential Revision: https://reviews.llvm.org/D86091
1 parent f4835b9 commit 04ea680

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/examples/Attribute/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
add_llvm_library(Attribute MODULE Attribute.cpp PLUGIN_TOOL clang)
22

33
if(LLVM_ENABLE_PLUGINS AND (WIN32 OR CYGWIN))
4-
target_link_libraries(Attribute ${cmake_2_8_12_PRIVATE}
4+
target_link_libraries(Attribute PRIVATE
55
clangAST
66
clangBasic
77
clangFrontend

0 commit comments

Comments
 (0)