Skip to content

Commit

Permalink
Merge remote-tracking branch 'project-template/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Automated MSK Jenkins User committed Mar 24, 2019
2 parents a4c2e03 + 89ad532 commit 43b4e47
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmake/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,8 @@ FILE_PATTERNS = *.c \
*.f \
*.for \
*.vhd \
*.vhdl
*.vhdl \
*/doc/*.md

# The RECURSIVE tag can be used to specify whether or not subdirectories should
# be searched for input files as well.
Expand Down
23 changes: 23 additions & 0 deletions cmake/set_default_build_to_release.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#######################################################################################################################
#
# IMPORTANT NOTE:
#
# DO NOT MODIFY THIS FILE inside a project. Instead update the project-template repository and pull the change from
# there. Make sure to keep the file generic, since it will be used by other projects, too.
#
# If you have modified this file inside a project despite this warning, make sure to cherry-pick all your changes
# into the project-template repository immediately.
#
#######################################################################################################################

#######################################################################################################################
# Set the build type to Release if none is specified
# Force it into Release if "None" is specified (needed to overrule dkpg_buildpackage)
######################################################################################################################

if(NOT CMAKE_BUILD_TYPE OR CMAKE_BUILD_TYPE STREQUAL "None")
set(CMAKE_BUILD_TYPE "Release" CACHE STRING
"Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel."
FORCE)
endif(NOT CMAKE_BUILD_TYPE OR CMAKE_BUILD_TYPE STREQUAL "None")

0 comments on commit 43b4e47

Please sign in to comment.