Warning, /frameworks/karchive/INSTALL is written in an unsupported language. File is not indexed.

0001 Here's how to build this framework:
0002 
0003 * First create a convenient folder to build the code in:
0004 
0005 mkdir build
0006 cd build
0007 
0008 * Next run CMake to create the configuration files to be used in the build:
0009 
0010 cmake .. \
0011       -DCMAKE_BUILD_TYPE=debug \
0012       -DCMAKE_INSTALL_PREFIX=/usr/local
0013 Various options can be passed to CMake to control how a project gets built, but these are the most common:
0014 
0015 The first line tells CMake where it can find the source code that is to be built.
0016 The second line tells CMake what type of build is required, in this example a debug build that will include useful information for when we are debugging any the software.
0017 The third line tells CMake where to install the software.
0018 
0019 * Finally compile and install
0020 
0021 make
0022 make install
0023