STM32H7 code for virtual analog synthesiser
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.
 
 
 
 

11 lines
259 B

cmake_minimum_required(VERSION 3.20)
project("STM32Synth" C CXX ASM)
include(cmake/st-project.cmake)
add_subdirectory(lib/synth)
add_executable(${PROJECT_NAME})
target_link_libraries(${PROJECT_NAME} PRIVATE synth)
add_st_target_properties(${PROJECT_NAME})