- A C++ 20 compatible compiler (eg. MSVC, GCC, Clang).
- CMake 3.20 or later.
To integrate NiForge into your project, you can use CMake's FetchContent to download and build it automatically.
include(FetchContent)
FetchContent_Declare(
niforge
GIT_REPOSITORY https://github.com/phill030/NiForge.git
GIT_TAG master # Or a specific release tag
)
FetchContent_MakeAvailable(niforge)
# Link against NiForge
target_link_libraries(${PROJECT_NAME} PRIVATE niforge)NiForge by Phill030 is licensed under CC BY-NC-SA 4.0