Table of Contents

Com instal·lar el programa a partir del codi font original

NOTA._ No ho traduïm per raó que no està relacionat amb l'ús del programa CdC pròpiament dit, sinó que va adreçat a programadors.

Get the source code

Create a new directory for the source code. You have two ways to get the code:

Finally you must have something like that :

     |- src -|                            < base directory, compilation scripts 
             |- skychart |                < skychart module
                         |- component     < project component
                         |- library       < project library
                         |- ...
                         |- units         < all compilation object go here

             |- varobs   |                < varobs module 

             |- tools | - data            < the "data" directory structure require to run the progran
                      | - cat             < the basic catalogs, the program used to build them
                      | - ...             < other data files

Install Lazarus

Install Lazarus using the last daily snapshot or SVN version from http://lazarus.freepascal.org. See http://wiki.lazarus.freepascal.org/Installing_Lazarus for more information.

Launch Lazarus and open Components-Configure, Installed Packages.

Check that Printer4Lazarus and TurboPowerIPro are installed, this is normally the case.
If not, install them from lazarus/component :

I use the following procedure to install or update Free Pascal and Lazarus on Linux with the cross compiler for Windows:

cd ~/fpc
# svn co http://svn.freepascal.org/svn/fpc/branches/fixes_2_2 .
svn up
make clean
make build
sudo make install
make clean OS_TARGET=win32 CPU_TARGET=i386
make build OS_TARGET=win32 CPU_TARGET=i386
sudo make crossinstall OS_TARGET=win32 CPU_TARGET=i386
ver=`fpc -iV`
sudo ln -f -s /usr/local/lib/fpc/$ver/ppc386 /usr/local/bin
sudo ln -f -s /usr/local/lib/fpc/$ver/ppcross386 /usr/local/bin
cd ~/lazarus
# svn co http://svn.freepascal.org/svn/lazarus/trunk .
svn up
make clean
make OS_TARGET=win32 CPU_TARGET=i386 clean
make bigide
make OS_TARGET=win32 CPU_TARGET=i386 bigide

Interactive compilation

Install first the required components from src/skychart/component directory.

Click “Open Package”, select “component/cdccomponents.lpk”, click “Compile”, “Install”.
When the install tell you to rebuild Lazarus say Yes.

You can now open the main project files skychart/cdc.lpi and compile.

To run in debug adjust Run-Run Parameters-Working Directory to your CDC directory.

To reduce the executable size for production use strip and upx.

The library getdss and plan404 are written in C language. To compile them, install the gcc compiler (Mingw on Windows) and run make from each library folder.

A few Windows specific library and plugin are not yet ported to Lazarus, please use Delphi if you want to compile them.

Automated Compilation and install

If you just want to compile the software without using the Lazarus interactive environment you can use the scripts available in the base directory.

Before to run this scripts be sure to have the Free Pascal binaries in your PATH environment, this is where you find the fpcmake command.

In the base directory you also found the daily_build.sh script I use to automatically build the packages for Linux and Windows.

For Linux

./configure [fpc=free_pascal_path] [lazarus=lazarus_path] [prefix=installation_path]
make
make install
make install_data

For Windows

configure.cmd 
make
make install
make install_data

Naming convention for the program source

The following naming convention is use for the main project source code to allow to quickly recognise the destination of a unit.

cdc.lpi         : The main project
pu_*.pas        : Form units with specific code only
pu_*.lfm        : Form definition
cu_*.pas        : Unit containing non-visual object.
u_*.pas         : Unit with generic code.