Skip to content

Commit

Permalink
pre-v1.0
Browse files Browse the repository at this point in the history
dakka committed Mar 25, 2024
1 parent 12a1311 commit 2e4911f
Showing 4 changed files with 41 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
# SPDX-License-Identifier: MIT
# Copyright (c) 2019 - 2024 Daniil Goncharov <[email protected]>.
#
# Lightweight header-only C++20 magic enum implementation
# Lightweight header-only C++20 enum reflection
#
# Distributed under the Boost Software License, Version 1.0 August 17th, 2003
#
@@ -39,7 +39,7 @@ cmake_minimum_required (VERSION 3.20)
project (conjure_enum
LANGUAGES CXX
HOMEPAGE_URL https://github.com/fix8mt/conjure_enum
DESCRIPTION "Lightweight magic enum"
DESCRIPTION "Lightweight C++20 enum reflection"
VERSION 1.0.0
)
include(FetchContent)
37 changes: 37 additions & 0 deletions examples/example.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
//-----------------------------------------------------------------------------------------
// conjure_enum (header only)
// Copyright (C) 2024 Fix8 Market Technologies Pty Ltd
// by David L. Dight
// see https://github.com/fix8mt/conjure_enum
//
// Based on magic_enum <https://github.com/Neargye/magic_enum>
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
// SPDX-License-Identifier: MIT
// Copyright (c) 2019 - 2024 Daniil Goncharov <[email protected]>.
//
// Lightweight header-only C++20 enum reflection
//
// Distributed under the Boost Software License, Version 1.0 August 17th, 2003
//
// Permission is hereby granted, free of charge, to any person or organization
// obtaining a copy of the software and accompanying documentation covered by
// this license (the "Software") to use, reproduce, display, distribute,
// execute, and transmit the Software, and to prepare derivative works of the
// Software, and to permit third-parties to whom the Software is furnished to
// do so, all subject to the following:
//
// The copyright notices in the Software and this entire statement, including
// the above license grant, this restriction and the following disclaimer,
// must be included in all copies of the Software, in whole or in part, and
// all derivative works of the Software, unless such copies or derivative
// works are solely in the form of machine-executable object code generated by
// a source language processor.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//----------------------------------------------------------------------------------------
#include <iostream>
#include <iomanip>

2 changes: 1 addition & 1 deletion examples/unittests.cpp
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
// SPDX-License-Identifier: MIT
// Copyright (c) 2019 - 2024 Daniil Goncharov <[email protected]>.
//
// Lightweight header-only C++20 magic enum implementation
// Lightweight header-only C++20 enum reflection
//
// Distributed under the Boost Software License, Version 1.0 August 17th, 2003
//
2 changes: 1 addition & 1 deletion include/fix8/conjure_enum.hpp
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
// SPDX-License-Identifier: MIT
// Copyright (c) 2019 - 2024 Daniil Goncharov <[email protected]>.
//
// Lightweight header-only C++20 magic enum implementation
// Lightweight header-only C++20 enum reflection
//
// Distributed under the Boost Software License, Version 1.0 August 17th, 2003
//

0 comments on commit 2e4911f

Please sign in to comment.