|
| 1 | +# ############################################################################## |
| 2 | +# apps/examples/hello_rust_cargo/CMakeLists.txt |
| 3 | +# |
| 4 | +# Licensed to the Apache Software Foundation (ASF) under one or more contributor |
| 5 | +# license agreements. See the NOTICE file distributed with this work for |
| 6 | +# additional information regarding copyright ownership. The ASF licenses this |
| 7 | +# file to you under the Apache License, Version 2.0 (the "License"); you may not |
| 8 | +# use this file except in compliance with the License. You may obtain a copy of |
| 9 | +# the License at |
| 10 | +# |
| 11 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +# |
| 13 | +# Unless required by applicable law or agreed to in writing, software |
| 14 | +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 15 | +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 16 | +# License for the specific language governing permissions and limitations under |
| 17 | +# the License. |
| 18 | +# |
| 19 | +# ############################################################################## |
| 20 | + |
| 21 | +include(nuttx_add_library) |
| 22 | + |
| 23 | +if(CONFIG_EXAMPLES_HELLO_RUST_CARGO) |
| 24 | + |
| 25 | + # Call cargo build from CMakeLists and add it to the build system. Notice we |
| 26 | + # should call cargo build with add_custom_target, otherwise cargo will be |
| 27 | + # called every time when cmake is configured. |
| 28 | + |
| 29 | + add_custom_command( |
| 30 | + OUTPUT |
| 31 | + ${CMAKE_BINARY_DIR}/hello_rust_cargo/riscv32imac-unknown-nuttx-elf/release/libhello.a |
| 32 | + COMMAND |
| 33 | + cargo build --release -Zbuild-std=core --manifest-path |
| 34 | + ${CMAKE_CURRENT_SOURCE_DIR}/hello/Cargo.toml --target |
| 35 | + riscv32imac-unknown-nuttx-elf --target-dir |
| 36 | + ${CMAKE_BINARY_DIR}/hello_rust_cargo) |
| 37 | + |
| 38 | + add_custom_target( |
| 39 | + hello_rust_cargo |
| 40 | + DEPENDS |
| 41 | + ${CMAKE_BINARY_DIR}/hello_rust_cargo/riscv32imac-unknown-nuttx-elf/release/libhello.a |
| 42 | + ) |
| 43 | + |
| 44 | + # Call cargo_build target each time when cmake is configured or generated. |
| 45 | + |
| 46 | + # Add static library to the build system. |
| 47 | + nuttx_library_import( |
| 48 | + rust_hello |
| 49 | + ${CMAKE_BINARY_DIR}/hello_rust_cargo/riscv32imac-unknown-nuttx-elf/release/libhello.a |
| 50 | + ) |
| 51 | + nuttx_add_extra_library(rust_hello) |
| 52 | + |
| 53 | + nuttx_add_application( |
| 54 | + NAME |
| 55 | + ${CONFIG_EXAMPLES_HELLO_RUST_CARGO_PROGNAME} |
| 56 | + SRCS |
| 57 | + proxy_main.c |
| 58 | + STACKSIZE |
| 59 | + ${CONFIG_EXAMPLES_HELLO_STACKSIZE} |
| 60 | + PRIORITY |
| 61 | + ${CONFIG_EXAMPLES_HELLO_PRIORITY}) |
| 62 | + |
| 63 | +endif() # CONFIG_EXAMPLES_HELLO_RUST_CARGO |
0 commit comments