How do I build fwbackups from source or Git?
For the stable/Python branch, run the autogen.sh script (if you are running Windows you will need to do this from within a MinGW installation) and then use the following to build, configure and install fwbackups:
./configure
, make
, and make install
If you want to try out the new C++ branch (still under development), first ensure that Qt and CMake are installed on your system. Then run this command in the appropriate build/platform:- On Windows with MinGW:
cmake . ..\..\ -G "MinGW Makefiles"
- On Mac OS X, Linux or other *nix based platforms:
cmake . ../../
Once CMake has completed generating the Makefiles, run: make
and make install