From aaf7f03d9520d2bae2605918b5c17f3493b50524 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Mon, 26 Nov 2018 09:26:37 +0100 Subject: [PATCH] List supported build types in top-level CMakeLists.txt --- CMakeLists.txt | 2 ++ contrib/ports/unix/check/CMakeLists.txt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f8ea2189..55fc44a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,7 @@ cmake_minimum_required(VERSION 3.10) +set (CMAKE_CONFIGURATION_TYPES "Debug;Release") + project(lwIP) # Example lwIP application diff --git a/contrib/ports/unix/check/CMakeLists.txt b/contrib/ports/unix/check/CMakeLists.txt index 54f3d202..68833163 100644 --- a/contrib/ports/unix/check/CMakeLists.txt +++ b/contrib/ports/unix/check/CMakeLists.txt @@ -1,5 +1,7 @@ cmake_minimum_required(VERSION 3.8) +set (CMAKE_CONFIGURATION_TYPES "Debug;Release") + project(lwipunittests C) if (NOT CMAKE_SYSTEM_NAME STREQUAL "Linux" AND NOT CMAKE_SYSTEM_NAME STREQUAL "Darwin")