Update lime references to azahar

BlueInterlude 2025-02-27 12:48:14 -05:00
parent 9f01dffc7d
commit b36fab4b8d

@ -17,7 +17,7 @@ Ensure that the following are installed:
- [CMake GUI](https://cmake.org/)
Then, follow these instructions:
- Open the CMake GUI Application and point it to the Lime3DS directory
- Open the CMake GUI Application and point it to the Azahar directory
- Use the preexisting build/ directory or tell CMake to make one
- Click the configure button and choose Visual Studio 17 2022 with x64 for the optional platform
- If you get errors like "XXX does not contain a CMakeLists.txt file", it means you did not use the --recursive flag when cloning the repo.
@ -37,13 +37,13 @@ First, ensure that [MSYS2](https://www.msys2.org/) is installed.
Then, follow these instructions:
- Open the "MSYS2 Clang64" (clang64.exe) shell inside the Lime3DS directory
- Open the "MSYS2 Clang64" (clang64.exe) shell inside the Azahar directory
- 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 ..`
- If you wish to build Lime3DS without the Qt GUI, `pass -DENABLE_QT=no to CMake`.
- If you wish to build Azahar without the Qt GUI, `pass -DENABLE_QT=no to CMake`.
- Make the executable: `cmake --build . -- -j$(nproc)`
- You can run the exe from command line with: `./bin/lime-qt.exe`
- You can run the exe from command line with: `./bin/azahar-qt.exe`
</details>
</details>