xref: /openbsd-src/gnu/llvm/llvm/lib/Testing/Support/CMakeLists.txt (revision 46035553bfdd96e63c94e32da0210227ec2e3cf1)
1add_definitions(-DGTEST_LANG_CXX11=1)
2add_definitions(-DGTEST_HAS_TR1_TUPLE=0)
3
4add_llvm_library(LLVMTestingSupport
5  Annotations.cpp
6  Error.cpp
7  SupportHelpers.cpp
8
9  BUILDTREE_ONLY
10
11  ADDITIONAL_HEADER_DIRS
12  ${LLVM_MAIN_INCLUDE_DIR}/llvm/Testing/Support
13
14  LINK_COMPONENTS
15  Support
16  )
17
18include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest/include)
19include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googlemock/include)
20target_link_libraries(LLVMTestingSupport PRIVATE gtest)
21