diff options
author | Marius Kintel <marius@kintel.net> | 2010-11-03 18:26:42 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-11-03 18:26:42 (GMT) |
commit | 363b1f17090890372cdabeab50614b25efc76704 (patch) | |
tree | f7fb13afa34c253d81ed2e7cbe77410c28a9dc9e | |
parent | 264608981cfcd65de8e64af8d97648a315d52bc1 (diff) |
build tests in debug mode as default
-rw-r--r-- | tests/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
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 # |