Warning, /games/picmi/INSTALL is written in an unsupported language. File is not indexed.
0001 PICMI 0002 0003 0004 General Information 0005 ------------------- 0006 0007 Picmi has the following dependencies: 0008 0009 At run time: 0010 qt, kdelibs, libkdegames 0011 0012 Additionally, at compile time: 0013 cmake, automoc4 0014 0015 0016 The default installation directories are 0017 0018 $prefix/bin (executable) 0019 $prefix/share/apps/picmi (graphics and levels) 0020 $prefix/share/applications/kde4 (.desktop file) 0021 $prefix/share/doc/kde/ (documentation) 0022 $prefix/share/icons/ (icons) 0023 ~/.config/picmi/ (user configurations and highscores, created at runtime) 0024 0025 $prefix can be configured by setting the CMAKE_INSTALL_PREFIX variable when running cmake and defaults to /usr/local/ if not set. 0026 0027 0028 0029 Manual Installation 0030 ------------------- 0031 0032 Assuming no defaults are changed, 0033 in the picmi directory containing CMakeLists.txt, execute: 0034 0035 cmake -DCMAKE_INSTALL_PREFIX="/usr" . 0036 make -f Makefile 0037 sudo make install 0038 0039 CMAKE_INSTALL_PREFIX can be set as required. 0040 This will install to the default directories as specified above. For packaging, 0041 0042 make DESTDIR="/your/packaging/dir" install 0043 0044 will install to /your/packaging/dir. 0045 0046 All done, execute picmi to run the game. 0047 0048 0049 0050 Cross Platform Compatibility 0051 ---------------------------- 0052 0053 Picmi should be compatible with any platform supported by Qt and KDE4. At the 0054 very least, this means Linux, Mac and Windows installs should work just fine. 0055 0056 To install on another platform than Linux, edit CMakeLists.txt and set picmi_FILEPATH 0057 to a location appropriate to your platform. 0058 0059 Settings and high scores will be automatically saved to platform-dependent locations; 0060 for more details, see the QSettings documentation. 0061 0062 0063 Enjoy!