Sync with openamp project sha1 b00b2d815

Synchronize code with sha1 b00b2d815fdf0cc34f8bb05731aeef877fc777d7
to integrate fix for cmake3.17 support

Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com>
This commit is contained in:
Arnaud Pouliquen 2020-04-02 18:05:48 +02:00 committed by Kumar Gala
parent 11a4d140f5
commit 60f40977ec
1 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@ set (PROJECT_VER_MINOR 1)
set (PROJECT_VER_PATCH 0)
set (PROJECT_VER 0.1.0)
if (NOT CMAKE_BUILD_TYPE)
if (NOT DEFINED CMAKE_BUILD_TYPE)
set (CMAKE_BUILD_TYPE Debug)
endif (NOT CMAKE_BUILD_TYPE)
endif (NOT DEFINED CMAKE_BUILD_TYPE)
message ("-- Build type: ${CMAKE_BUILD_TYPE}")
if (NOT CMAKE_INSTALL_LIBDIR)