cpp-reflect
C++ Reflection and Annotations Library
Loading...
Searching...
No Matches
cpp-reflect

cpp-reflect

C++ Reflection and Annotations Library

Language Tool Tool GitHub GitHub tag (latest SemVer)

OverviewRequirementsIntegrationUsageLicense

Overview

{TODO}

Requirements

{TODO}

Integration

CMake project (recommended)

Since this is a module library, the recommended way to integrate it into your project is with CMake. This is easy to do with FetchContent:

# CmakeLists.txt
include(FetchContent)
FetchContent_Declare(cpp_reflect
GIT_REPOSITORY https://github.com/castle055/cpp-reflect.git
GIT_TAG main # for the latest version, or a version tag such as 'v0.2.0'
FIND_PACKAGE_ARGS
)
FetchContent_MakeAvailable(cpp_reflect)
include_directories(${cpp_reflect_SOURCE_DIR}/include)

Usage

{TODO}


GitHub @castle055  ·