From 57aff5b15583964973b71bc5654cd54c4833efd6 Mon Sep 17 00:00:00 2001 From: Adam Mitz Date: Fri, 10 Nov 2017 10:20:37 -0600 Subject: [PATCH] Updated status messages output from CMake to reflect actual project name --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b1c256ca4..773e8c4ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,11 +20,11 @@ set( Boost_USE_STATIC_LIBS ON CACHE STRING "ON or OFF" ) if( APPLE ) # Apple Specific Options Here - message( STATUS "Configuring ChainBase on OS X" ) + message( STATUS "Configuring AppBase on OS X" ) set( CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -std=c++14 -stdlib=libc++ -Wall -Wno-conversion -Wno-deprecated-declarations" ) else( APPLE ) # Linux Specific Options Here - message( STATUS "Configuring ChainBase on Linux" ) + message( STATUS "Configuring AppBase on Linux" ) set( CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -std=c++14 -Wall" ) set( rt_library rt ) set( pthread_library pthread)