Files
Last update 11 months 5 days
by giuliof
| Filesfirmwaretests | |
|---|---|
| .. | |
| CMakeLists.txt | |
| SAMPLEDISK.bin | |
| catch.hpp | |
| test_fat.cpp | |
| test_fat_filename.cpp | |
| test_gui.cpp | |
| test_runner.cpp |
CMakeLists.txtcmake_minimum_required(VERSION 3.24) project(tinyDiskII-tests) add_executable(tinyDiskII-tests test_runner.cpp test_fat_filename.cpp # Testing sdcard_fat.cpp ../src/sdcard_fat.cpp test_fat.cpp test_gui.cpp ) # SdCard image file must be copied in build directory file(COPY SAMPLEDISK.bin DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) add_test(NAME tinyDiskII-tests COMMAND tinyDiskII-tests)