DEVELOPERS: add Yegor Yefremov for the ser2net package
[buildroot-gz.git] / package / cmake / Config.in
blob6f04a4ad39eea1c89b37e9a3ac1dbb3df314bbc7
1 config BR2_PACKAGE_CMAKE_ARCH_SUPPORTS
2         bool
3         default y
4         depends on BR2_arm    || BR2_armeb       || BR2_aarch64  || \
5                 BR2_m68k      || BR2_mips        || BR2_mips64   || \
6                 BR2_mipsel    || BR2_mips64el    || BR2_powerpc  || \
7                 BR2_powerpc64 || BR2_powerpc64le || BR2_sparc    || \
8                 BR2_i386      || BR2_x86_64      || BR2_xtensa
10 config BR2_PACKAGE_CMAKE
11         bool
13 config BR2_PACKAGE_CMAKE_CTEST
14         bool "ctest"
15         select BR2_PACKAGE_CMAKE
16         select BR2_PACKAGE_ZLIB
17         select BR2_PACKAGE_JSONCPP
18         select BR2_PACKAGE_LIBCURL
19         select BR2_PACKAGE_LIBARCHIVE
20         select BR2_PACKAGE_EXPAT
21         select BR2_PACKAGE_BZIP2
22         select BR2_PACKAGE_XZ
23         depends on BR2_PACKAGE_CMAKE_ARCH_SUPPORTS
24         depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # from jsoncpp
25         depends on BR2_USE_WCHAR # libarchive
26         depends on BR2_INSTALL_LIBSTDCPP
27         depends on !BR2_STATIC_LIBS
28         help
29           CTest is a testing tool distributed as a part of CMake. It
30           can be used to automate updating (using CVS for example),
31           configuring, building, testing, performing memory checking,
32           performing coverage, and submitting results to a CDash or
33           Dart dashboard system.
35           http://www.cmake.org/
37 comment "ctest needs a toolchain w/ C++, wchar, dynamic library, gcc >= 4.7"
38         depends on BR2_PACKAGE_CMAKE_ARCH_SUPPORTS
39         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
40                 BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7