From e89c4b513c540bedad7ddacaa88db39c59fa1b7f Mon Sep 17 00:00:00 2001 From: mhubii Date: Thu, 9 May 2024 17:09:14 +0100 Subject: [PATCH] default release build --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 18900c2..71c4c6f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,10 @@ project(FRIClient VERSION 1.0.0 DESCRIPTION "KUKA's Fast Robot Interface client library." LANGUAGES C CXX) +if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type." FORCE) +endif() + ###################### # variable definitions ######################