forked from nasa/FM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmission_build.cmake
More file actions
30 lines (27 loc) · 824 Bytes
/
Copy pathmission_build.cmake
File metadata and controls
30 lines (27 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
###########################################################
#
# FM app mission build setup
#
# This file is evaluated as part of the "prepare" stage
# and can be used to set up prerequisites for the build,
# such as generating header files
#
###########################################################
# Add stand alone documentation
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/docs/dox_src ${MISSION_BINARY_DIR}/docs/fm-usersguide)
# The list of header files that control the FM configuration
set(FM_MISSION_CONFIG_FILE_LIST
fm_fcncode_values.h
fm_interface_cfg_values.h
fm_mission_cfg.h
fm_msg.h
fm_msgdefs.h
fm_msgstruct.h
fm_perfids.h
fm_tbl.h
fm_tbldefs.h
fm_tblstruct.h
fm_topicid_values.h
fm_extern_typedefs.h
)
generate_configfile_set(${FM_MISSION_CONFIG_FILE_LIST})