You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
377 B
CMake
15 lines
377 B
CMake
cmake_minimum_required (VERSION 3.14)
|
|
include(CMakePrintHelpers)
|
|
|
|
project(Example2)
|
|
|
|
|
|
add_executable(example2 main.cpp)
|
|
|
|
sdf(example2 graph.py test)
|
|
add_sdf_dir(example2)
|
|
|
|
target_include_directories(example2 PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_include_directories(example2 PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/generated)
|
|
|
|
target_link_libraries(example2 PRIVATE CMSISDSP) |