Skip to content

fburgerdev/math

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Description

C++ library for ...

describe your project ...

Interface

namespace Math {
    // INSERT YOUR INTERFACE HERE
}

Examples

EXAMPLE TITLE

    // INSERT YOUR EXAMPLE HERE

Use this Project

Installation

At your desired location, execute the following command in the console.

git clone [email protected]:fburgerdev/math.git

Include in Project

In your C++ project:

  • add the include directory "PATH_TO_THIS_REPO/include"
  • add the library directory "PATH_TO_THIS_REPO/lib/CONFIG/"
  • link the library "math.a" (linux) or "math.lib" (windows)

Build Yourself (optional)

with Linux

In the build folder, execute the following command in the console.

make config=CONFIG

If you have not installed make, execute this command in the console first.

sudo apt-get install make -y

with Windows

Open the file "build/math.sln" with Visual Studio. After you have selected your desired configuration, click on Build > Build Solution.

Note: Make sure you have the Desktop developement with C++ workload installed.