2010-09-24 17:01:13 +08:00
|
|
|
########################################################################
|
|
|
|
# Experimental CMake build script for Google Test.
|
|
|
|
#
|
|
|
|
# Consider this a prototype. It will change drastically. For now,
|
|
|
|
# this is only for people on the cutting edge.
|
|
|
|
#
|
|
|
|
# To run the tests for Google Test itself on Linux, use 'make test' or
|
|
|
|
# ctest. You can select which tests to run using 'ctest -R regex'.
|
|
|
|
# For more options, run 'ctest --help'.
|
|
|
|
########################################################################
|
|
|
|
#
|
|
|
|
# Project-wide settings
|
|
|
|
|
|
|
|
# Where gtest's .h files can be found.
|
|
|
|
include_directories(
|
|
|
|
googletest/include
|
2013-11-15 18:20:45 +08:00
|
|
|
googletest
|
2010-09-24 17:01:13 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
add_definitions(-DGTEST_OS_WINDOWS=1)
|
|
|
|
endif()
|
|
|
|
|
2010-10-08 02:12:54 +08:00
|
|
|
if(SUPPORTS_NO_VARIADIC_MACROS_FLAG)
|
|
|
|
add_definitions("-Wno-variadic-macros")
|
|
|
|
endif()
|
|
|
|
|
2010-10-17 10:26:16 +08:00
|
|
|
set(LLVM_REQUIRES_RTTI 1)
|
|
|
|
add_definitions( -DGTEST_HAS_RTTI=0 )
|
|
|
|
|
2013-05-14 21:29:16 +08:00
|
|
|
if (NOT LLVM_ENABLE_THREADS)
|
|
|
|
add_definitions( -DGTEST_HAS_PTHREAD=0 )
|
|
|
|
endif()
|
|
|
|
|
2015-01-21 05:23:15 +08:00
|
|
|
find_library(PTHREAD_LIBRARY_PATH pthread)
|
|
|
|
if (PTHREAD_LIBRARY_PATH)
|
|
|
|
list(APPEND LIBS pthread)
|
|
|
|
endif()
|
|
|
|
|
2010-09-26 04:25:25 +08:00
|
|
|
add_llvm_library(gtest
|
2013-11-15 18:20:45 +08:00
|
|
|
googletest/src/gtest-all.cc
|
2010-09-24 17:01:13 +08:00
|
|
|
|
2014-02-26 14:41:29 +08:00
|
|
|
LINK_LIBS
|
2015-01-21 05:23:15 +08:00
|
|
|
${LIBS}
|
2016-02-12 09:42:43 +08:00
|
|
|
|
|
|
|
LINK_COMPONENTS
|
|
|
|
Support # Depends on llvm::raw_ostream
|
2016-09-10 03:45:34 +08:00
|
|
|
|
|
|
|
# This is a library meant only for the build tree.
|
|
|
|
BUILDTREE_ONLY
|
2015-01-21 05:23:15 +08:00
|
|
|
)
|
2014-02-10 19:27:41 +08:00
|
|
|
|
2014-01-10 19:02:26 +08:00
|
|
|
add_subdirectory(UnitTestMain)
|