The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / gtest / Config.in
1 config BR2_PACKAGE_GTEST
2         bool "gtest"
3         depends on BR2_USE_WCHAR
4         depends on BR2_TOOLCHAIN_HAS_THREADS
5         depends on BR2_INSTALL_LIBSTDCPP
6         depends on BR2_USE_MMU # fork()
7         help
8           Google's framework for writing C++ tests on a variety of
9           platforms (Linux, Mac OS X, Windows, Cygwin, Windows CE, and
10           Symbian). Based on the xUnit architecture. Supports
11           automatic test discovery, a rich set of assertions,
12           user-defined assertions, death tests, fatal and non-fatal
13           failures, value- and type-parameterized tests, various
14           options for running the tests, and XML test report
15           generation.
16
17           Gtest also allows to easily build testsuites for C programs.
18
19           This package allows running testsuites on the target which
20           might be advantageous in certain cases.
21
22           http://code.google.com/p/googletest/
23
24 comment "gtest needs a toolchain w/ C++, wchar, threads"
25         depends on BR2_USE_MMU
26         depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP