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