[git-users] Re: Independent modules

2013-08-17 Thread pbranc
Aforementioned structure is forced by external runtime environment. No 
possibilites for changes.
Projects are not compiled to libs etc.


-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[git-users] Re: Independent modules

2013-08-17 Thread Huu Da Tran
On Saturday, August 17, 2013 2:50:50 PM UTC-4, pbr...@gmail.com wrote:

 Aforementioned structure is forced by external runtime environment. No 
 possibilites for changes.
 Projects are not compiled to libs etc.


I am sorry if my reply was not clearly expressed. It is not necessary to 
compile anything for it to be installed. Your runtime environment doest not 
require to also be the development environment.

Imagine the following:

dev_env
repo1
images/*
scripts/*
libraries/*
repo2
images/*
   ...

so repos are independent. Then you would have a simple install script 
(bash/unix to be adapted or windows batch):

for d in dev_env/*; do
mkdir AppDir/Images/$d
cp $d/images/* AppDir/Images/$d/
mkdir AppDir/Scripts/$d
cp $d/scripts/* AppDir/Scripts/$d/
etc...

Hope this is more clear.

HD.

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.