Warning, /education/labplot/tests/import_export/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 option(ENABLE_TEST_IMPORTEXPORT "Enable Import/Export Tests" ON)
0002 
0003 if (ENABLE_TEST_IMPORTEXPORT)
0004 
0005     add_subdirectory(ASCII)
0006     add_subdirectory(Binary)
0007     add_subdirectory(JSON)
0008     add_subdirectory(MQTT)
0009     add_subdirectory(Project)
0010     add_subdirectory(Spice)
0011     add_subdirectory(CAN)
0012     add_subdirectory(SQL)
0013 
0014     option(ENABLE_TEST_IMPORTEXPORT_ROOT "Enable Root Tests" ON)
0015     IF (ZLIB_FOUND AND LZ4_FOUND AND ENABLE_TEST_IMPORTEXPORT_ROOT)
0016             add_subdirectory(ROOT)
0017     ENDIF ()
0018 
0019     option(ENABLE_TEST_IMPORTEXPORT_READSTAT "Enable Readstat Tests" ON)
0020     IF ((READSTAT_FOUND OR BUILD_READSTAT) AND ENABLE_TEST_IMPORTEXPORT_READSTAT)
0021             add_subdirectory(ReadStat)
0022     ENDIF ()
0023 
0024     option(ENABLE_TEST_IMPORTEXPORT_MATIO "Enable Matio Tests" ON)
0025     IF (MATIO_FOUND AND ENABLE_TEST_IMPORTEXPORT_MATIO)
0026             add_subdirectory(Matio)
0027     ENDIF ()
0028 
0029     option(ENABLE_TEST_IMPORTEXPORT_HDF5 "Enable HDF5 Tests" ON)
0030     IF (HDF5_FOUND AND ENABLE_TEST_IMPORTEXPORT_HDF5)
0031             add_subdirectory(HDF5)
0032     ENDIF ()
0033 
0034     option(ENABLE_TEST_IMPORTEXPORT_CFITSIO "Enable CFitsio Tests" ON)
0035     IF (CFITSIO_FOUND AND ENABLE_TEST_IMPORTEXPORT_CFITSIO)
0036             add_subdirectory(FITS)
0037     ENDIF ()
0038 
0039     option(ENABLE_TEST_IMPORTEXPORT_NETCDF "Enable Netcdf Tests" ON)
0040     IF (NETCDF_FOUND AND ENABLE_TEST_IMPORTEXPORT_NETCDF)
0041             add_subdirectory(NetCDF)
0042     ENDIF ()
0043 
0044     option(ENABLE_TEST_IMPORTEXPORT_EXCEL "Enable Excel Tests" ON)
0045     IF ((QXLSX_FOUND OR BUILD_EXCEL) AND ENABLE_TEST_IMPORTEXPORT_EXCEL)
0046             add_subdirectory(XLSX)
0047     ENDIF ()
0048 
0049     option(ENABLE_TEST_IMPORTEXPORT_ORCUS "Enable Orcus Tests" ON)
0050     IF (ORCUS_FOUND AND ENABLE_TEST_IMPORTEXPORT_ORCUS)
0051             add_subdirectory(Ods)
0052     ENDIF ()
0053 
0054     add_subdirectory(DATASETS)
0055 
0056 endif()