19 lines · plain
1# Do not build unittest libraries automatically, they will be pulled in2# by unittests if these are built.3if (NOT ${LLVM_INSTALL_GTEST})4 set (BUILDTREE_ONLY BUILDTREE_ONLY)5 set(EXCLUDE_FROM_ALL ON)6endif()7 8add_llvm_library(LLVMTestingAnnotations9 Annotations.cpp10 11 ${BUILDTREE_ONLY}12 13 ADDITIONAL_HEADER_DIRS14 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Testing/Support15 16 LINK_COMPONENTS17 Support18 )19