cmake add a few include guards

- this is a minor cmake configure time optimization
This commit is contained in:
Daniel Agar
2019-11-16 16:27:36 -05:00
committed by GitHub
parent df73a6667d
commit ea79bd733d
3 changed files with 18 additions and 0 deletions

View File

@@ -31,6 +31,12 @@
# #
############################################################################ ############################################################################
# cmake include guard
if(px4_find_python_module_included)
return()
endif(px4_find_python_module_included)
set(px4_find_python_module_included true)
# #
# px4_find_python_module # px4_find_python_module
# #

View File

@@ -31,6 +31,12 @@
# #
############################################################################ ############################################################################
# cmake include guard
if(px4_git_included)
return()
endif(px4_git_included)
set(px4_git_included true)
#============================================================================= #=============================================================================
# #
# px4_add_git_submodule # px4_add_git_submodule

View File

@@ -31,6 +31,12 @@
# #
############################################################################ ############################################################################
# cmake include guard
if(px4_parse_function_args_included)
return()
endif(px4_parse_function_args_included)
set(px4_parse_function_args_included true)
#============================================================================= #=============================================================================
# #
# px4_parse_function_args # px4_parse_function_args