Building for Windows

What you need:

Cloning Lime3DS

                    
    git clone --recursive https://github.com/Lime3DS/Lime3DS
    cd Lime3DS
                    
                

Building

  • Open the "MSYS2 Clang64" (clang64.exe) shell
  • Download and install all dependencies using: pacman -S mingw-w64-clang-x86_64-{gcc,qt6,cmake} make git
  • Make a build directory: mkdir build && cd build
  • Make CMake files: cmake -DCMAKE_BUILD_TYPE=Release ..
    • To build without Qt, pass -DENABLE_QT=no to CMake
  • Make the executable: cmake --build . -- -j4
  • You can run the exe from command line with: ./bin/lime-qt.exe