Skip to content

Commit

Permalink
🔖 λcommon v1.9.9: Added Mac OS support, added lambdacommon_info, fixe…
Browse files Browse the repository at this point in the history
…d Windows detection, etc..
  • Loading branch information
LambdAurora committed Dec 27, 2018
1 parent 1c7a274 commit 4bd5f76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion include/lambdacommon/lambdacommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4bd5f76

Please sign in to comment.