16 Systems ®





Copyright 2010 16 Systems ®
All Rights Reserved.

Launch Codes - Secure Offline Password Generation - How to Compile

Download | FAQ | How to Compile | Software License

To compile Launch Codes, you'll need three things:
  1. A computer operating system that has /dev/urandom or a Microsoft Windows XP (or newer) computer with a C++ compiler (we suggest GCC).
  2. The Boost C++ libraries for lexical_cast and boost::random.
  3. FLTK for the graphical user interface.
After setting up the build environment, download the Launch Codes source, unzip it, open a terminal and cd to the source folder. Run a command similar to the ones below. We do not use makefiles, so you'll have to edit the command to fit your environment.
# Windows
g++ -static -Os `fltk-config --cxxflags` goodpass.cpp `fltk-config --ldflags` -o LaunchCodes.exe -IC:/Boost/include/boost-1_41/

# Unix
g++ -Os `fltk-config --cxxflags` goodpass.cpp `fltk-config --ldflags` -o LaunchCodes -I/usr/local/include/