mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
* Add FPRIME_CMAKE_QUIET option * Remove makefile deadcode * Attempt CI debug Add debugging message for FPRIME_SUB_BUILD_JOBS variable. * Fix argument passing for sub-build jobs * Update cmake/sub-build/sub-build.cmake * Update cmake/sub-build/sub-build.cmake --------- Co-authored-by: Thomas Boyer-Chammard <49786685+thomas-bc@users.noreply.github.com>
13 lines
604 B
CMake
13 lines
604 B
CMake
# Helper not available as fprime cmake code not loaded yet
|
|
if (NOT FPRIME_CMAKE_QUIET)
|
|
message(STATUS "[F Prime] F Prime CMake package found at: ${CMAKE_CURRENT_LIST_FILE}")
|
|
endif()
|
|
include("${CMAKE_CURRENT_LIST_DIR}/FPrime.cmake")
|
|
|
|
# By default the F Prime package will load the codebase. This can be set OFF by setting the variable
|
|
# FPRIME_INCLUDE_FRAMEWORK_CODE to OFF. When set OFF, the user must call fprime_setup_included_code()
|
|
# to be able to use F Prime code.
|
|
if ((NOT DEFINED FPRIME_INCLUDE_FRAMEWORK_CODE) OR (FPRIME_INCLUDE_FRAMEWORK_CODE))
|
|
fprime_setup_included_code()
|
|
endif()
|