# EngMath **Repository Path**: feng_yezi/EngMath ## Basic Information - **Project Name**: EngMath - **Description**: Engineering Math - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-24 - **Last Updated**: 2024-04-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # EngMath Engineering Math ## Getting Started ### Installing > Ubuntu 1. **Install GCC**: Ubuntu typically comes with gcc already installed, but if you need to install it, you can use this command: `sudo apt install build-essential` 2. **Install CMake**: You can install CMake using this command: `sudo apt install cmake` 3. **Build the project**: Navigate to the project directory and run the following commands to build the project: ```bash mkdir build cd build cmake .. make make install ``` > win32 1. **Install MinGW-w64:** Download the MinGW-w64 installer from the SourceForge website: https://sourceforge.net/projects/mingw-w64/ Run the installer and choose the settings that best suit your needs. Note: Make sure to select "posix" for the threads option and "seh" for the exceptions option if you're using a 64-bit system. After installation, add the MinGW-w64 bin directory to the system PATH. You can do this by searching for "Environment Variables" in your computer's start menu, then clicking on "Edit the system environment variables", then "Environment Variables". Under "System Variables", find and select "Path" then click "Edit". Click "New" and add the path to the bin folder in your MinGW-w64 installation directory. 2. **Install CMake:** Download the CMake installer from the official website: https://cmake.org/download/Run the installer and follow the prompts to install CMake. During installation, make sure to select "Add CMake to the system PATH for all users" or "Add CMake to the system PATH for the current user". 3. **Build the project:** Open a command prompt and navigate to the project directory, then run the following commands to build the project: ```bash mkdir build cd build cmake .. -G "MinGW Makefiles" mingw32-make mingw32-make install ```