Skip to content
Snippets Groups Projects
Unverified Commit 89ad532c authored by vargheseg's avatar vargheseg Committed by GitHub
Browse files

Merge pull request #7 from vargheseg/master

- Make doxygen pick up markdown.
- introduced: set_default_build_to_release.cmake
parents 9d4df21d 3522d078
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
#######################################################################################################################
#
# 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% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment