From 685363b2a9a7a85771976544d95e89fbc18ff467 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Thu, 22 Jul 2010 14:50:44 +0000
Subject: [PATCH] use RelWithDebInfo if no build type is specified

---
 utils/api_demos/CMakeLists.txt    | 9 +++++++++
 utils/api_demos/mainCartesian.cpp | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/utils/api_demos/CMakeLists.txt b/utils/api_demos/CMakeLists.txt
index e88d1cb56b..f6ab8ed2f0 100644
--- a/utils/api_demos/CMakeLists.txt
+++ b/utils/api_demos/CMakeLists.txt
@@ -1,5 +1,14 @@
 cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
 
+# if CMAKE_BUILD_TYPE is specified use it; otherwise set the default
+# build type to "RelWithDebInfo" ("-O2 -g" with gcc) prior to calling
+# project()
+if(DEFINED CMAKE_BUILD_TYPE)
+  set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "Choose build type")
+else(DEFINED CMAKE_BUILD_TYPE)
+  set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "Choose build type")
+endif(DEFINED CMAKE_BUILD_TYPE)
+
 project(api_demos CXX)
 
 add_subdirectory(../.. "${CMAKE_CURRENT_BINARY_DIR}/gmsh")
diff --git a/utils/api_demos/mainCartesian.cpp b/utils/api_demos/mainCartesian.cpp
index e779681196..295fac8950 100644
--- a/utils/api_demos/mainCartesian.cpp
+++ b/utils/api_demos/mainCartesian.cpp
@@ -3,7 +3,7 @@
 // plaqueEp.stp             0.2  0.2  0.2   0.3   3
 // plaqueEpRotated.stp      0.3  0.3  0.3   0.3   3
 // jonction_collee2.stp     6    6    6     10    3
-// panneau_raidi_simple.stp 3    3    50    10    2       0
+// panneau_raidi_simple.stp 3    3    50    5     2       0
 // plaque_trouee.stp        1    1    1     2     3
 
 #include "Gmsh.h"
-- 
GitLab