Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

castle055/cpp-reflect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cpp-reflect

C++ Reflection and Annotations Library

Language Tool Tool GitHub GitHub tag (latest SemVer)

OverviewRequirementsIntegrationUsageLicense

[TOC]

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  · 

About

C++ Reflection and Annotations Library

Topics

Resources

License

Stars

Watchers

Forks