https://github.com/qudix/commonlibsse-ng-template
SKSE64 template using CommonLibSSE-NG
https://github.com/qudix/commonlibsse-ng-template
commonlibsse-ng skse64 template xmake
Last synced: about 1 month ago
JSON representation
SKSE64 template using CommonLibSSE-NG
- Host: GitHub
- URL: https://github.com/qudix/commonlibsse-ng-template
- Owner: qudix
- License: gpl-3.0
- Created: 2022-10-01T02:51:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-25T17:27:18.000Z (about 2 months ago)
- Last Synced: 2025-02-25T18:33:30.552Z (about 2 months ago)
- Topics: commonlibsse-ng, skse64, template, xmake
- Language: Lua
- Homepage:
- Size: 42 KB
- Stars: 29
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CommonLibSSE-NG Plugin Template
This is a basic plugin template using CommonLibSSE-NG.
### Requirements
* [XMake](https://xmake.io) [2.8.2+]
* C++23 Compiler (MSVC, Clang-CL)## Getting Started
```bat
git clone --recurse-submodules https://github.com/qudix/commonlibsse-ng-template
cd commonlibsse-ng-template
```### Build
To build the project, run the following command:
```bat
xmake build
```> ***Note:*** *This will generate a `build/windows/` directory in the **project's root directory** with the build output.*
### Build Output (Optional)
If you want to redirect the build output, set one of or both of the following environment variables:- Path to a Skyrim install folder: `XSE_TES5_GAME_PATH`
- Path to a Mod Manager mods folder: `XSE_TES5_MODS_PATH`
### Project Generation (Optional)
If you want to generate a Visual Studio project, run the following command:
```bat
xmake project -k vsxmake
```> ***Note:*** *This will generate a `vsxmakeXXXX/` directory in the **project's root directory** using the latest version of Visual Studio installed on the system.*
### Upgrading Packages (Optional)
If you want to upgrade the project's dependencies, run the following commands:
```bat
xmake repo --update
xmake require --upgrade
```## Documentation
Please refer to the [Wiki](../../wiki/Home) for more advanced topics.