mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
* WIP defaulted config * New configuration call * Config archives use -fPIC when supporting BUILD_SHARED_LIBS * Moving config to default/config * Fixing CMake UTs * register_fprime_config tests * Re-enabling shared libraries except for macOS * Better testing and comments * More configuration clean-up * More review fixes * Fixing multiple locations bug * sp * Fixing config assembler name * Python formatting * Initial review suggestions * Reverting snprintf fix * Merge conflict test failures * Linux CMake UT fixs
13 lines
260 B
CMake
13 lines
260 B
CMake
####
|
|
# F prime CMakeLists.txt:
|
|
#
|
|
# SOURCE_FILES: combined list of source and autocoding files
|
|
# MOD_DEPS: (optional) module dependencies
|
|
#
|
|
####
|
|
set(SOURCE_FILES
|
|
"${CMAKE_CURRENT_LIST_DIR}/SmSignalBuffer.cpp"
|
|
)
|
|
set(MOD_DEPS Fw_Types)
|
|
register_fprime_module()
|