Created
December 30, 2022 21:40
-
-
Save dextercd/ebc14fbff42383663fa9967a58efe0e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dear_imgui_path="$HOME/NoitaMods/NoitaDearImGui" | |
mkdir linux-build | |
cd linux-build/ | |
cmake "$dear_imgui_path" \ | |
-DCMAKE_INSTALL_PREFIX="$HOME/.local/share/Steam/steamapps/common/Noita/mods" \ | |
-DCMAKE_CXX_FLAGS="-static" \ | |
-DCMAKE_TOOLCHAIN_FILE="$dear_imgui_path/TC-mingw.cmake" \ | |
-DCMAKE_BUILD_TYPE=Release | |
cmake --build . && cmake --install . --component NoitaImGui |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment