Overview • Requirements • Integration • Usage • License
[TOC]
{TODO}
{TODO}
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){TODO}
GitHub @castle055 ·