From 4bd5f76d999a38d36bdb51867a8d7898122094fd Mon Sep 17 00:00:00 2001 From: LambdAurora Date: Thu, 27 Dec 2018 17:44:31 +0100 Subject: [PATCH] =?UTF-8?q?:bookmark:=20=CE=BBcommon=20v1.9.9:=20Added=20M?= =?UTF-8?q?ac=20OS=20support,=20added=20lambdacommon=5Finfo,=20fixed=20Win?= =?UTF-8?q?dows=20detection,=20etc..?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMakeLists.txt | 2 +- include/lambdacommon/lambdacommon.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a82ffdd..0d9d17b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ generate_flags(LAMBDACOMMON_COMPILE_FLAGS "native" 2 true) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}${LAMBDACOMMON_COMPILE_FLAGS}") if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -framework CoreFoundation -framework ApplicationServices") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -framework CoreFoundation -framework ApplicationServices -Wno-unused-command-line-argument") endif() # All files: diff --git a/include/lambdacommon/lambdacommon.h b/include/lambdacommon/lambdacommon.h index 84fc3d9..ee666f2 100644 --- a/include/lambdacommon/lambdacommon.h +++ b/include/lambdacommon/lambdacommon.h @@ -49,7 +49,7 @@ #define LAMBDACOMMON_VERSION_MAJOR 1 #define LAMBDACOMMON_VERSION_MINOR 9 #define LAMBDACOMMON_VERSION_PATCH 9 -#define LAMBDACOMMON_VERSION_TYPE "indev" +#define LAMBDACOMMON_VERSION_TYPE "Release" // Deletes the pointer and sets the variable to null. It's just simpler to write like this. #define LCOMMON_DELETE_POINTER(pointer) delete pointer; pointer = nullptr;