There are almost no dependencies. At least the database library you want to use. If you wnat to build from the sources you need an appropiate compiler (gcc or clang) and the cmake build system installed. If you plan to generate an install package on a windows system you need the nullsoft scriptable install system.
File | Size (bytes) |
---|
Download the appropriate package and install it on your system. Once installed you can start developing your app starting with the introduction.
Get the sources from GitHub and enter the created directory:
1
2
$ git clone https://github.com/zussel/matador.git
$ cd matador
Or get the pre-packaged sources:
Create a build directory change to it and call cmake:
1
2
3
$ mkdir build
$ cd build
$ cmake ..
Then you can build oos from sources:
1
$ make
Create a build directory change to it and call cmake:
1
2
3
$ mkdir build
$ cd build
$ cmake -G "Visual Studio *" ..
Where *
is one of the Visual Studio
strings up from 14
. See cmake
documentation here.
After generation you find a matador.sln
solution file in the current directory.