Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 1.31 KB

README.md

File metadata and controls

31 lines (27 loc) · 1.31 KB

This is Skyrim mod that sets small items to be weightless.

Based on https://github.com/Ryan-rsm-McKenzie/CommonLibSSE

Requirements

Building

Adjust the following paths and set up environment variables (using powershell):

$env:Skyrim64Path = "C:\Program Files (x86)\Steam\steamapps\common\Skyrim Special Edition\"
$env:VCPKG_ROOT = "C:\vcpkg"

Then start building

git clone --recurse-submodules https://github.com/EoD/weightless-skse
cd weightless-skse
cmake --preset vs2022-windows
cmake --build build --config Release

Tips

  • Set COPY_OUTPUT to ON to automatically copy the built dll to the game directory, i.e. cmake --preset vs2022-windows -DCOPY_OUTPUT=ON
  • Build the package target to automatically build and zip up your dll in a ready-to-distribute format.