1 config BR2_PACKAGE_CMAKE_ARCH_SUPPORTS
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
13 config BR2_PACKAGE_CMAKE_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
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
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.
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