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 select BR2_PACKAGE_LIBUV
24 depends on BR2_PACKAGE_CMAKE_ARCH_SUPPORTS
25 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # from jsoncpp
26 depends on BR2_USE_WCHAR # libarchive
27 depends on BR2_INSTALL_LIBSTDCPP
28 depends on !BR2_STATIC_LIBS
29 depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv
30 depends on BR2_USE_MMU # libuv
32 CTest is a testing tool distributed as a part of CMake. It
33 can be used to automate updating (using CVS for example),
34 configuring, building, testing, performing memory checking,
35 performing coverage, and submitting results to a CDash or
36 Dart dashboard system.
40 comment "ctest needs a toolchain w/ C++, wchar, dynamic library, gcc >= 4.7, NPTL"
41 depends on BR2_PACKAGE_CMAKE_ARCH_SUPPORTS
42 depends on BR2_USE_MMU
43 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
44 BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \
45 !BR2_TOOLCHAIN_HAS_THREADS_NPTL