md4c

C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.
git clone https://noulin.net/git/md4c.git
Log | Files | Refs | README | LICENSE

commit 96a928089ba63ac5e03cd3241c111838819b10c2
parent 09c7fd7f7ccb12921c32bbaad67af3e5bbef1a2e
Author: Martin Mitas <mity@morous.org>
Date:   Sat, 26 Nov 2016 14:00:40 +0100

CMakeLists.txt: By default, do Release build.

Diffstat:
MCMakeLists.txt | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -6,6 +6,10 @@ project(MD4C C) set(CMAKE_CONFIGURATION_TYPES Debug Release RelWithDebInfo MinSizeRel) if("${CMAKE_BUILD_TYPE}" STREQUAL "") set(CMAKE_BUILD_TYPE $ENV{CMAKE_BUILD_TYPE}) + + if("${CMAKE_BUILD_TYPE}" STREQUAL "") + set(CMAKE_BUILD_TYPE "Release") + endif() endif()