From 363b1f17090890372cdabeab50614b25efc76704 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Wed, 3 Nov 2010 19:26:42 +0100 Subject: build tests in debug mode as default diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index dc92e89..5a031e7 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,6 +1,11 @@ cmake_minimum_required(VERSION 2.8) project(tests) +# Build debug build as default +if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE Debug) +endif() + # # Build test apps # -- cgit v0.10.1