Problem Editing Topology - Module Seemingly Not Found in Deployment's instances.fpp File #2127
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Which version of Without seeing your entire F´ project it's hard to tell - but from looking at your Components and Deployment, it seems you may be missing a CMake call to correctly add your components to the build system. Try adding the following lines to your ###
# Components and Topology
###
add_fprime_subdirectory("${CMAKE_CURRENT_LIST_DIR}/<path/to>/Employee/")
add_fprime_subdirectory("${CMAKE_CURRENT_LIST_DIR}/<path/to>/SandwichMachine/")
[...] These |
Beta Was this translation helpful? Give feedback.
Which version of
fprime-tools
are you running?Without seeing your entire F´ project it's hard to tell - but from looking at your Components and Deployment, it seems you may be missing a CMake call to correctly add your components to the build system.
Try adding the following lines to your
GrandOpening/CMakeLists.txt
, under the# Components and Topology
section (replacing <path/to> of course)These
add_fprime_subdirectory
calls are what register your components in your CMake project, and allow all t…