2010-09-24 09:01:13 +00: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 10:20:45 +00:00
|
|
|
googletest
|
2010-09-24 09:01:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
add_definitions(-DGTEST_OS_WINDOWS=1)
|
|
|
|
endif()
|
|
|
|
|
2010-10-07 18:12:54 +00:00
|
|
|
if(SUPPORTS_NO_VARIADIC_MACROS_FLAG)
|
|
|
|
add_definitions("-Wno-variadic-macros")
|
|
|
|
endif()
|
|
|
|
|
2010-10-17 02:26:16 +00:00
|
|
|
set(LLVM_REQUIRES_RTTI 1)
|
|
|
|
add_definitions( -DGTEST_HAS_RTTI=0 )
|
|
|
|
|
2013-05-14 13:29:16 +00:00
|
|
|
if (NOT LLVM_ENABLE_THREADS)
|
|
|
|
add_definitions( -DGTEST_HAS_PTHREAD=0 )
|
|
|
|
endif()
|
|
|
|
|
2015-01-20 21:23:15 +00:00
|
|
|
find_library(PTHREAD_LIBRARY_PATH pthread)
|
|
|
|
if (PTHREAD_LIBRARY_PATH)
|
|
|
|
list(APPEND LIBS pthread)
|
|
|
|
endif()
|
|
|
|
|
2010-09-25 20:25:25 +00:00
|
|
|
add_llvm_library(gtest
|
2013-11-15 10:20:45 +00:00
|
|
|
googletest/src/gtest-all.cc
|
2010-09-24 09:01:13 +00:00
|
|
|
|
2014-02-26 06:41:29 +00:00
|
|
|
LINK_LIBS
|
2015-01-20 21:23:15 +00:00
|
|
|
${LIBS}
|
2016-02-12 01:42:43 +00:00
|
|
|
|
|
|
|
LINK_COMPONENTS
|
|
|
|
Support # Depends on llvm::raw_ostream
|
2015-01-20 21:23:15 +00:00
|
|
|
)
|
2014-02-10 11:27:41 +00:00
|
|
|
|
2014-01-10 11:02:26 +00:00
|
|
|
add_subdirectory(UnitTestMain)
|