Skip to content

Commit a7d7a9d

Browse files
committed
Upgrade magic_enum dependency
1 parent 01674e4 commit a7d7a9d

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ if(NOT DEFINED CORE_MASTER_PROJECT)
4242
endif()
4343
endif()
4444

45-
project(modern.cpp.core VERSION 0.6.3 DESCRIPTION "Modern C++ Core" HOMEPAGE_URL "https://vxapps.com" LANGUAGES C CXX)
45+
project(modern.cpp.core VERSION 0.6.4 DESCRIPTION "Modern C++ Core" HOMEPAGE_URL "https://vxapps.com" LANGUAGES C CXX)
4646
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/env.cmake)
4747
include(${CMAKE}/checks.cmake)
4848
if(CORE_MASTER_PROJECT AND CMAKE_BUILD_TYPE STREQUAL Debug)

cmake/fetch/magic_enum.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ include(FetchContent)
3232

3333
FetchContent_Declare(magic_enum
3434
GIT_REPOSITORY https://github.com/Neargye/magic_enum.git
35-
GIT_TAG v0.9.6
35+
GIT_TAG v0.9.7
3636
GIT_SHALLOW 1
3737
)
3838

examples/logger/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
#include <vector>
5353

5454
/* magic enum */
55-
#include <magic_enum.hpp>
55+
#include <magic_enum/magic_enum.hpp>
5656

5757
/* modern.cpp.core */
5858
#include <Logger.h>

source/CPU.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#endif
4141

4242
/* magic enum */
43-
#include <magic_enum.hpp>
43+
#include <magic_enum/magic_enum.hpp>
4444

4545
/* local header */
4646
#ifndef __cpp_lib_to_underlying

source/Logger.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
#include <string_view>
4444

4545
/* magic enum */
46-
#include <magic_enum.hpp>
46+
#include <magic_enum/magic_enum.hpp>
4747

4848
/* local header */
4949
#include "Logger.h"

source/Logger_enum.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
#include <type_traits>
3535

3636
/* magic_enum */
37-
#include <magic_enum.hpp>
38-
#include <magic_enum_flags.hpp>
37+
#include <magic_enum/magic_enum.hpp>
38+
#include <magic_enum/magic_enum_flags.hpp>
3939

4040
/* local header */
4141
#include "Logger.h"

tests/test_magic_enum.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
#include <utility>
4444

4545
/* magic enum */
46-
#include <magic_enum.hpp>
46+
#include <magic_enum/magic_enum.hpp>
4747

4848
/* modern.cpp.core */
4949
#include <Cpp23.h>

0 commit comments

Comments
 (0)