Skip to content

Phill030/NiForge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NiForge

A robust and efficient C++ library for parsing NetImmerse File (NIF) formats.

License Discord

Table of Contents


Overview


Features


Getting Started

Prerequisites

  • A C++ 20 compatible compiler (eg. MSVC, GCC, Clang).
  • CMake 3.20 or later.

Installation & Building

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)

Usage


Contributing


License

NiForge by Phill030 is licensed under CC BY-NC-SA 4.0

Acknowledgments

About

Nif file parser for Revive101

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published