diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
commit | f4fae92b6768541e2952173c3d4b09040f95bf7e (patch) | |
tree | d8c5d93232235cd635f3310b4d95490df181ba2d /kpilot/INSTALL | |
parent | 125c0a08265b75a133644d3b55f47e37c919f45d (diff) | |
download | tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.tar.gz tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.zip |
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpilot/INSTALL')
-rw-r--r-- | kpilot/INSTALL | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/kpilot/INSTALL b/kpilot/INSTALL deleted file mode 100644 index 3fa5f0ff5..000000000 --- a/kpilot/INSTALL +++ /dev/null @@ -1,56 +0,0 @@ -Basic Installation -================== - - -KPilot uses the CMake build system which is the native build system -for KDE4; for KDE3 applications like KPilot, CMake is also useable. -You need CMake installed on your system to compile KPilot, but CMake -is becoming more widespread now. You can get it from www.cmake.org . - -First configure KPilot by running - - ./configure [options] - -If you run configure with no options it will tell you which ones -are available; you *must* provide at least one for configure to -work. A most-vanilla configure looks like this: - - ./configure --enable-tests=no - -Suggested options are at least: - - ./configure --enable-debug=yes --enable-tests=yes - -You may need to specify a prefix or a location where pilot-link -is installed; run ./configure --show for a summary of options. - -Once configure is done, compile KPilot, by running - - make -f Makefile.cmake - -in the KPilot source directory (that is the one containing this -INSTALL file). This will run CMake to generate the real Makefiles, -then run make again to build the project in a build-* subdirectory. -Once it is done, you can run - - make -f Makefile.cmake install - -to install KPilot in the KDE directory. - - - - -Advanced Installation -===================== - -In order to build KPilot somewhere else, or if the sources are on -read-only media, use CMake directly instead of using the basic -Makefile included with KPilot. To do this, - 1) Create a build directory somewhere - 2) cd into that build directory - 3) Run cmake /path/to/kpilot/sources - 4) Run make - -In order to install KPilot somewhere else, use -DCMAKE_INSTALL_PREFIX . - - |