File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -124,13 +124,13 @@ on how to make Conanfiles.
124124Create a new ` CMakeLists.txt ` in your project dir:
125125``` cmake
126126cmake_minimum_required(VERSION 3.30)
127- project(my-samv71-project CXX)
127+ project(my-samv71-project LANGUAGES C CXX)
128128
129129find_package(SAMV71-DFP COMPONENTS SAMV71Q21B REQUIRED)
130130
131131add_executable(my-samv71-project src/main.cpp)
132132
133- target_link_libraries(my-samv71-project PRIVATE samv71-dfp::SAMV71Q21B::Startup samv71-dfp::SAMV71Q21B::Linker::Flash)
133+ target_link_libraries(my-samv71-project PRIVATE samv71-dfp::Core samv71-dfp:: SAMV71Q21B::Startup samv71-dfp::SAMV71Q21B::Linker::Flash)
134134```
135135
136136** NOTE** : Always link a startup file and linker script in the final binary
You can’t perform that action at this time.
0 commit comments