Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qudix/commonlibsse-template
SKSE64 template using CommonLibSSE
https://github.com/qudix/commonlibsse-template
commonlibsse skse64 template xmake
Last synced: 3 months ago
JSON representation
SKSE64 template using CommonLibSSE
- Host: GitHub
- URL: https://github.com/qudix/commonlibsse-template
- Owner: qudix
- License: gpl-3.0
- Created: 2024-04-29T19:36:56.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-10-16T11:48:17.000Z (4 months ago)
- Last Synced: 2024-10-18T03:24:24.986Z (4 months ago)
- Topics: commonlibsse, skse64, template, xmake
- Language: Lua
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CommonLibSSE Plugin Template
This is a basic plugin template using CommonLibSSE.
### Requirements
* [XMake](https://xmake.io) [2.8.2+]
* C++23 Compiler (MSVC, Clang?)## Getting Started
```bat
git clone --recurse-submodules https://github.com/qudix/commonlibsse-template
cd commonlibsse-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.