Changes between Initial Version and Version 1 of repo/sync_old


Ignore:
Timestamp:
04/21/16 11:18:58 (8 years ago)
Author:
Sanahuja Guillaume
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • repo/sync_old

    v1 v1  
     1[[PageOutline]]
     2
     3= Get repositories =
     4
     5Depending on what you are doing with Fl-AIR, there are several options for getting the repositories.
     6
     7== Only developing applications based on latest Fl-AIR version ==
     8
     9To get the latest version of Fl-AIR run the following commands:
     10{{{
     11$ cd $FLAIR_ROOT
     12$ svn co https://devel.hds.utc.fr/svn/flair-dev/tags/latest flair-dev
     13$ svn co https://devel.hds.utc.fr/svn/flair-bin/tags/latest flair-bin
     14$ svn co https://devel.hds.utc.fr/svn/flair-src/tags/latest flair-src
     15}}}
     16
     17== Developing applications based on multiple versions of Fl-AIR ==
     18
     19If you need more than one version of Fl-AIR on your computer, on solution is to do the following:
     20
     21{{{
     22$ cd $FLAIR_ROOT
     23$ svn co https://devel.hds.utc.fr/svn/flair-dev flair-dev_svn
     24$ svn co https://devel.hds.utc.fr/svn/flair-bin flair-bin_svn
     25$ svn co https://devel.hds.utc.fr/svn/flair-src flair-src_svn
     26}}}
     27This will sync all the repositories. To avoid this have look at ''--set-depth'' svn command.
     28
     29Then make a symbolic link to the version you need:
     30{{{
     31$ cd $FLAIR_ROOT
     32$ ln -s flair-dev_svn/tags/0.0.1 flair-dev
     33$ ln -s flair-bin_svn/tags/0.0.1 flair-bin
     34$ ln -s flair-src_svn/tags/0.0.1 flair-src
     35}}}
     36
     37== Developing on Fl-AIR ==
     38
     39To develop on Fl-AIR (lib, tools or demos), you need the trunk. It can be also a good idea to have the tags.
     40
     41{{{
     42$ cd $FLAIR_ROOT
     43$ svn co https://devel.hds.utc.fr/svn/flair-dev flair-dev_svn
     44$ svn co https://devel.hds.utc.fr/svn/flair-bin flair-bin_svn
     45$ svn co https://devel.hds.utc.fr/svn/flair-src flair-src_svn
     46}}}
     47This will sync all the repositories. To avoid this have look at ''--set-depth'' svn command.
     48
     49Then make a symbolic link to the trunk:
     50{{{
     51$ cd $FLAIR_ROOT
     52$ ln -s flair-dev_svn/trunk flair-dev
     53$ ln -s flair-bin_svn/trunk flair-bin
     54$ ln -s flair-src_svn/trunk flair-src
     55}}}