|
24 | 24 | #teensy compiler options
|
25 | 25 | set(COMPILERPATH "/Applications/ARM/bin/")
|
26 | 26 |
|
27 |
| - include(FetchContent) |
28 |
| - FetchContent_Declare(teensy_cmake_macros |
29 |
| - GIT_REPOSITORY https://github.com/newdigate/teensy-cmake-macros |
30 |
| - GIT_TAG main |
31 |
| - ) |
32 |
| - FetchContent_MakeAvailable(teensy_cmake_macros) |
33 |
| - message(INFO ${teensy_cmake_macros_SOURCE_DIR}) |
34 |
| - include(${teensy_cmake_macros_SOURCE_DIR}/CMakeLists.arm.include.txt) |
| 27 | + set(BUILD_FOR_TEENSY ON) |
| 28 | + set(CMAKE_SYSTEM_NAME Generic) |
| 29 | + set(CMAKE_SYSTEM_PROCESSOR arm) |
| 30 | + set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY") |
| 31 | + set(CMAKE_C_COMPILER ${COMPILERPATH}arm-none-eabi-gcc) |
| 32 | + set(CMAKE_CXX_COMPILER ${COMPILERPATH}arm-none-eabi-g++) |
| 33 | + set(CMAKE_CXX_LINK_EXECUTABLE "${CMAKE_C_COMPILER} <FLAGS> <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS> -o <TARGET> <LINK_LIBRARIES>") |
35 | 34 | ```
|
36 |
| -* add include in your CMakeLists.txt file |
37 |
| - ```cmake |
38 |
| - include(${teensy_cmake_macros_SOURCE_DIR}/CMakeLists.include.txt) |
39 |
| - ``` |
| 35 | + * add include in your CMakeLists.txt file |
| 36 | + ```cmake |
| 37 | + include(FetchContent) |
| 38 | + FetchContent_Declare(teensy_cmake_macros |
| 39 | + GIT_REPOSITORY https://github.com/newdigate/teensy-cmake-macros |
| 40 | + GIT_TAG main |
| 41 | + ) |
| 42 | + FetchContent_MakeAvailable(teensy_cmake_macros) |
| 43 | + include(${teensy_cmake_macros_SOURCE_DIR}/CMakeLists.include.txt) |
| 44 | + ``` |
40 | 45 | * specify toolchain file in cmake configuration stage
|
41 | 46 | ```shell
|
42 | 47 | > cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE:FILEPATH="../cmake/toolchains/teensy41.cmake`
|
|
52 | 57 | ```cmake
|
53 | 58 | cmake_minimum_required(VERSION 3.5)
|
54 | 59 | project(midi_smf_reader C CXX)
|
| 60 | +
|
| 61 | + include(FetchContent) |
| 62 | + FetchContent_Declare(teensy_cmake_macros |
| 63 | + GIT_REPOSITORY https://github.com/newdigate/teensy-cmake-macros |
| 64 | + GIT_TAG main |
| 65 | + ) |
| 66 | + FetchContent_MakeAvailable(teensy_cmake_macros) |
55 | 67 | include(${teensy_cmake_macros_SOURCE_DIR}/CMakeLists.include.txt)
|
56 | 68 |
|
57 | 69 | import_arduino_library(cores ${teensy_cores_SOURCE_DIR}/teensy4 avr util)
|
|
0 commit comments