Skip to content

Commit

Permalink
Indicate that liblog needs C++17 (#14)
Browse files Browse the repository at this point in the history
* Fix example logging.ini
* Indicate that liblog needs C++17
* Bump version to 0.2.1

---------

Signed-off-by: Kai-Uwe Hermann <[email protected]>
  • Loading branch information
hikinggrass authored Nov 3, 2023
1 parent 5c132fb commit 19dce0e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.11)

project(everest-log
VERSION 0.2
VERSION 0.2.1
DESCRIPTION "EVerest logging library"
LANGUAGES CXX C
)
Expand Down
2 changes: 1 addition & 1 deletion examples/logging.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[Core]
DisableLogging=false
Filter="%Severity% >= DEBUG"
Filter="%Severity% >= DEBG"

[Sinks.Console]
Destination=Console
Expand Down
2 changes: 2 additions & 0 deletions lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,5 @@ if (BUILD_BACKTRACE_SUPPORT)
)
target_compile_definitions(log PRIVATE WITH_LIBBACKTRACE)
endif()

target_compile_features(log PUBLIC cxx_std_17)

0 comments on commit 19dce0e

Please sign in to comment.