From fc96f83e9c7157b4f7151db506dd2777b8b96c48 Mon Sep 17 00:00:00 2001 From: Jason Gauci Date: Tue, 9 Oct 2018 17:45:36 -0700 Subject: [PATCH] v5.1.4 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c3ac5953..fbc93230c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,10 +1,10 @@ cmake_minimum_required (VERSION 3.0.2) -project (EternalTCP VERSION 5.1.3) +project (EternalTCP VERSION 5.1.4) option(BUILD_TEST "Build all unit test" OFF) option(CODE_COVERAGE "Enable code coverage" OFF) -SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DET_VERSION='\"${CMAKE_PROJECT_VERSION}\"'") +SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DET_VERSION='\"${PROJECT_VERSION}\"'") # For easylogging, disable default log file, enable crash log, ensure thread safe, and catch c++ exceptions SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DELPP_NO_DEFAULT_LOG_FILE -DELPP_FEATURE_CRASH_LOG -DELPP_THREAD_SAFE -DELPP_HANDLE_SIGABRT") IF(BUILD_TEST)