Skip to content
johnmangan edited this page Jun 7, 2013 · 3 revisions

Welcome to the CARDS product Wiki. Unordered pages track the history of the product, as turn-ins were made.

Below is the basic steps without much explanation to build the product locally.

The following has been done on standard Ubuntu builds (12.10+) but the commands will be different for other operating systems. Adjust the intent for the system of your choice. You'll need git, ccmake and standard C++ build tools. In Ubuntu, you would type:

sudo apt-get install git cmake-curses-gui build-essential

Then clone this GIT repository, make a build directory within the repository, use ccmake to configure & generate a makefile, then finally compile:

git clone https://github.com/johnmangan/cards.git

mkdir cards/build

cd cards/builds

ccmake ..

c

g

make

Clone this wiki locally