| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| xfstk-dldr-linux-source-1.8.1.tar.gz | 2015-05-14 | 7.9 MB | |
| xfstk-dldr-linux-source-1.8.0.tar.gz | 2015-02-07 | 7.9 MB | |
| xfstk-dldr-linux-source-1.7.3.tar.gz | 2014-11-19 | 7.8 MB | |
| xfstk-dldr-linux-source-1.7.2.tar.gz | 2014-10-01 | 7.8 MB | |
| xfstk-dldr-linux-source-1.7.1.tar.gz | 2014-07-21 | 7.8 MB | |
| xfstk-dldr-linux-source-1.7.0.tar.gz | 2014-07-10 | 7.8 MB | |
| xfstk-dldr-linux-source-1.6.0.tar.gz | 2014-06-30 | 7.8 MB | |
| xfstk-dldr-linux-source-1.5.6.tar.gz | 2014-05-29 | 7.8 MB | |
| README.txt | 2014-05-23 | 1.2 kB | |
| xfstk-dldr-linux-source-1.5.5.tar.gz | 2014-05-23 | 7.8 MB | |
| xfstk-dldr-linux-source-1.5.4.tar.gz | 2014-05-23 | 7.8 MB | |
| xfstk-dldr-linux-source-1.5.3.tar.gz | 2014-05-23 | 7.8 MB | |
| contributors.txt | 2014-05-23 | 367 Bytes | |
| Totals: 13 Items | 86.3 MB | 6 |
Install prerequisites:
$ sudo apt-get install g++ qtcreator build-essential devscripts libxml2-dev alien doxygen graphviz libusb-dev libboost-all-dev
Install CMake:
http://www.cmake.org/cmake/resources/software.html
http://www.cmake.org/files/v2.8/cmake-2.8.12.2.tar.gz
How To Build This Software:
$ mdkir build
$ cd build
$ export DISTRIBUTION_NAME=ubuntu12.04
$ export BUILD_VERSION=0.0.0
$ cmake ..
$ make
Optional targets are avialable. I.E:
$ make docs
or
$ make package
Type `make help` (after cmake has been run) for a list of targets.
Explanation:
1) Make a directory. I.E:
$ mkdir temporary_directory
Q: Why do I have to make a directory?
A: This is to initiate an "out-of-source" build so no build clutter will be left in the source tree.
If you want to clean up the build you can just delete temporary_directory
(more information: http://www.cmake.org/Wiki/CMake_FAQ#Out-of-source_build_trees).
2) Change to the directory you just created. I.E:
$ cd temporary_directory
3) Execute cmake. It's argument will be the path to the CMakeLists.txt file.
$ cmake ..
4) Simply run the make command with optional arguments.