Skip to content

Commit

Permalink
Adding note on module names and commenting out MOD_DEPS
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch authored May 1, 2024
1 parent 0d1a291 commit 2d408c3
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ set(SOURCE_FILES

# Uncomment and add any modules that this module depends on, else
# they might not be available when cmake tries to build this module.

set(MOD_DEPS
MyOtherModule
)
#
# Module names are derived from the path from the nearest project/library/framework
# root when not specifically overridden by the developer. i.e. The module defined by
# `Ref/SignalGen/CMakeLists.txt` will be named `Ref_SignalGen`. `Ref/SignalGen`
# is an acceptable alternative and will be internally converted to `Ref_SignalGen`.
#
#set(MOD_DEPS
# MyPackage_MyOtherModule
#)

register_fprime_module()

0 comments on commit 2d408c3

Please sign in to comment.