You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
341 B
7 lines
341 B
cmake_minimum_required(VERSION 3.10)
|
|
project(sd_raw)
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
add_definitions(-DPROG_FLASH_SIZE=10000)
|
|
teensy_include_directories(../../src)
|
|
teensy_add_executable(littlefs_raw littlefs_raw.ino)
|
|
teensy_target_link_libraries(littlefs_raw teensy_variable_playback SD SdFat Audio LittleFS SPI SerialFlash cores Wire arm_math)
|
|
|