blob: 4400b38234e4551c12cbabe8a47be668e049ca0f [file] [log] [blame]
Michael J. Spencer10d274d2010-09-24 09:01:13 +00001########################################################################
2# Experimental CMake build script for Google Test.
3#
4# Consider this a prototype. It will change drastically. For now,
5# this is only for people on the cutting edge.
6#
7# To run the tests for Google Test itself on Linux, use 'make test' or
8# ctest. You can select which tests to run using 'ctest -R regex'.
9# For more options, run 'ctest --help'.
10########################################################################
11#
12# Project-wide settings
13
14# Where gtest's .h files can be found.
15include_directories(
16 googletest/include
17 )
18
19if(WIN32)
20 add_definitions(-DGTEST_OS_WINDOWS=1)
21endif()
22
Michael J. Spencer33a390e2010-10-07 18:12:54 +000023if(SUPPORTS_NO_VARIADIC_MACROS_FLAG)
24 add_definitions("-Wno-variadic-macros")
25endif()
26
Oscar Fuentes46d8a932010-09-25 20:25:25 +000027add_llvm_library(gtest
28 googletest/gtest.cc
29 googletest/gtest-death-test.cc
30 googletest/gtest-filepath.cc
31 googletest/gtest-port.cc
32 googletest/gtest-test-part.cc
33 googletest/gtest-typed-test.cc
34 )
Michael J. Spencer10d274d2010-09-24 09:01:13 +000035
Oscar Fuentes46d8a932010-09-25 20:25:25 +000036add_llvm_library(gtest_main
37 UnitTestMain/TestMain.cpp
38 )