Welcome to Flarial Client, the ultimate modded client designed specifically for Minecraft Bedrock Edition (MCBE). Flarial Client enhances your gameplay with a suite of tools and features that optimize performance, improve visual quality, and provide a smoother gaming experience.
Support us on Ko-Fi! https://ko-fi.com/flarialmc
Flarial Client is available in two forms:
- A user-friendly launcher that manages Flarial and other MCBE clients.
- Includes Discord integration for community and support.
- Offers additional Minecraft management features.
- A minimal, lightweight version for advanced users.
- Requires an external injector to set up and run.
- Operating System: Windows 10/11 (64-bit processors only)
- Minecraft Version: Compatible with MCBE versions 1.20 and above.
If you encounter issues, check out our FAQ or join our community on Discord. We’re here to help!
-
CMake: Ensure CMake is installed on your system. You can download it from cmake.org and follow the installation instructions for your operating system.
-
Git: Install Git if you haven't already. You can download Git from git-scm.com and follow the installation instructions.
-
Clone the Repository: Open a terminal or command prompt and clone the repository using Git:
git clone https://github.com/flarialmc/dll.git
-
Navigate to the Project Directory: Change into the directory of the cloned repository:
cd dll
-
Create a Build Directory: It's a good practice to create a separate directory for out-of-source builds. This keeps your source directory clean and allows for easier management of builds:
mkdir build cd build
-
Configure with CMake: Run CMake to configure the build environment. Specify the path to the CMakeLists.txt file in the root of the cloned repository:
cmake ..
This command generates the necessary build files based on the CMake configuration.
-
Build the Project: Once CMake has configured the build files successfully, you can build the project using a suitable build tool (like
make
on Unix-like systems or Visual Studio on Windows):cmake --build .
This command compiles the project according to the generated build files.
By following these steps, you should be able to clone and build the project using CMake successfully.