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.
17 lines
437 B
CMake
17 lines
437 B
CMake
cmake_minimum_required (VERSION 3.14)
|
|
include(CMakePrintHelpers)
|
|
|
|
project(Example3)
|
|
|
|
|
|
add_executable(example3 main.cpp custom.cpp)
|
|
|
|
sdf(example3)
|
|
add_sdf_dir(example3)
|
|
|
|
target_include_directories(example3 PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_include_directories(example3 PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/generated)
|
|
|
|
target_link_libraries(example3 PRIVATE CMSISDSP)
|
|
|
|
file(COPY input_example3.txt DESTINATION ${CMAKE_BINARY_DIR}) |