Changeset 7fd1756f1e in tspsg for INSTALL.txt


Ignore:
Timestamp:
Oct 15, 2010, 8:15:43 AM (14 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
ac9ff7c0f1, d45b48efe9
Parents:
760f2aae97
git-author:
Oleksii Serdiuk <contacts@…> (10/15/10 08:15:43)
git-committer:
Oleksii Serdiuk <contacts@…> (06/29/12 19:45:58)
Message:
  • Updated INSTALLs and ChangeLogs? with the latest information.
  • Regenerated tspsg.tag.

NB: This will be the first public beta release.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • INSTALL.txt

    r760f2aae97 r7fd1756f1e  
    1212  3. SUPPORTED PLATFORMS
    1313  4. BUILDING AND INSTALLATION
    14      4.1. GENERAL PROCEDURE
    15      4.2. LINUX/UNIX
    16      4.3. WINDOWS
    17           4.3.1. USING MINGW
    18           4.3.2. USING VISUAL STUDIO
    19      4.4. WINDOWS MOBILE
    20      4.5. SYMBIAN
    21      4.6. OTHER PLATFORMS, SUPPORTED BY QT
     14     4.1. COMMON INFORMATION
     15     4.2. GENERAL PROCEDURE
     16     4.3. LINUX/UNIX/BSD
     17     4.4. WINDOWS
     18          4.4.1. USING MINGW
     19          4.4.2. USING VISUAL STUDIO
     20     4.5. WINDOWS MOBILE
     21     4.6. SYMBIAN
     22     4.7. OTHER PLATFORMS, SUPPORTED BY QT
    2223  5. UNINSTALLATION
    2324  6. TROUBLESHOOTING
     
    7778============================
    7879
    79 4.1 GENERAL PROCEDURE
     804.1. COMMON INFORMATION
     81-----------------------
     82
     83To be able ot build TSPSG you need to have the following Qt modules:
     84QtCore, QtGui and QtSvg. The first two are required, the last one is
     85optional. To get support for additional image formats (i.e., JPEG and
     86TIFF) you'll additionally need corresponding Qt imageformats plugins.
     87
     88If you want to build TSPSG without SVG support add nosvg to qmake
     89CONFIG parameter, so that qmake command will typically be:
     90
     91    qmake CONFIG+=release CONFIG+=nosvg
     92
     93This way you will not depend on QtSvg module but will not be able to
     94export solution graph in SVG format.
     95
     96
     97TSPSG uses qmake PREFIX parameter to determine installation path for
     98make install command. If you don't specify it when running qmake, it
     99will be assigned the default value depending on the platform:
     100
     101 Platform          | Default PREFIX value
     102-------------------|-------------------------------------
     103 Linux/UNIX/BSD    | /usr
     104-------------------|-------------------------------------
     105 Windows           | %PROGRAMFILES% environment variable
     106                   | (usually, it is "C:\Program Files")
     107-------------------|-------------------------------------
     108 Windows CE/Mobile | "\Program Files"
     109-------------------|-------------------------------------
     110 Symbian           | <ignored>
     111-------------------|-------------------------------------
     112
     113NOTE: Please, note that there are no installation and/or packaging
     114rules for MacOS and other platforms not mentioned in this table.
     115
     116
     117By default, TSPSG uses precompiled header when being built. If you
     118experience problems with it you may add CONFIG+=nopch parameter to
     119qmake to disable the generation and use of the precompiled header.
     120
     121
     1224.2. GENERAL PROCEDURE
     123----------------------
    80124
    81125On most platforms the general building and installation procedure is:
     
    94138
    95139
    96 4.2. LINUX/UNIX
    97 ---------------
     1404.3. LINUX/UNIX/BSD
     141-------------------
    98142
    99143Open a shell, navigate to the directory where you have TSPSG source
     
    125169depending on your distribution.
    126170
    127 By default, executable will go to /usr/bin, COPYING and README will go
    128 to /usr/share/TSPSG, translations will go /usr/share/TSPSG/l10n, docs
    129 will go to /usr/share/doc/TSPSG-<VERSION>.
    130 
    131 
    132 4.3. WINDOWS
     171The executable goes to <PREFIX>/bin; COPYING, ChangeLog.txt, README.txt
     172and INSTALL.txt go to <PREFIX>/share/doc/TSPSG-<VERSION>.
     173
     174
     1754.4. WINDOWS
    133176------------
    134177
     178TSPSG will be installed to <PREFIX>\TSPSG folder.
     179
    135180NOTE: Please, read the Section 7 after reading this Section.
    136181
    137 4.3.1. USING MINGW
     1824.4.1. USING MINGW
    138183~~~~~~~~~~~~~~~~~~
    139184
     
    153198    mingw32-make install
    154199
    155 TSPSG will be installed to %PROGRAMFILES%\TSPSG folder (usually, it is
    156 C:\Program Files\TSPSG).
    157 
    158 
    159 4.3.2. USING VISUAL STUDIO
     200
     2014.4.2. USING VISUAL STUDIO
    160202~~~~~~~~~~~~~~~~~~~~~~~~~~
    161203
     
    173215    nmake install
    174216
    175 TSPSG will be installed to %PROGRAMFILES%\TSPSG folder (usually, it is
    176 C:\Program Files\TSPSG).
    177 
    178 
    179 4.4. WINDOWS CE/MOBILE
     217
     2184.5. WINDOWS CE/MOBILE
    180219----------------------
    181220
     
    208247
    209248
    210 4.5. SYMBIAN
     2494.6. SYMBIAN
    211250------------
    212251
     
    249288
    250289
    251 4.6. OTHER PLATFORMS, SUPPORTED BY QT
     2904.7. OTHER PLATFORMS, SUPPORTED BY QT
    252291-------------------------------------
    253292
Note: See TracChangeset for help on using the changeset viewer.