| Revision 408,
2.1 KB
checked in by tholt, 2 years ago
(diff) |
|
More copyright header corrections
|
| Line | |
|---|
| 1 | # -*- Mode:Python -*- |
|---|
| 2 | |
|---|
| 3 | ########################################################################## |
|---|
| 4 | # # |
|---|
| 5 | # This file is part of AVANGO. # |
|---|
| 6 | # # |
|---|
| 7 | # Copyright 1997 - 2009 Fraunhofer-Gesellschaft zur Foerderung der # |
|---|
| 8 | # angewandten Forschung (FhG), Munich, Germany. # |
|---|
| 9 | # # |
|---|
| 10 | # AVANGO is free software: you can redistribute it and/or modify # |
|---|
| 11 | # it under the terms of the GNU Lesser General Public License as # |
|---|
| 12 | # published by the Free Software Foundation, version 3. # |
|---|
| 13 | # # |
|---|
| 14 | # AVANGO is distributed in the hope that it will be useful, # |
|---|
| 15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of # |
|---|
| 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # |
|---|
| 17 | # GNU General Public License for more details. # |
|---|
| 18 | # # |
|---|
| 19 | # You should have received a copy of the GNU Lesser General Public # |
|---|
| 20 | # License along with AVANGO. If not, see <http://www.gnu.org/licenses/>. # |
|---|
| 21 | # # |
|---|
| 22 | ########################################################################## |
|---|
| 23 | |
|---|
| 24 | import avango.build |
|---|
| 25 | |
|---|
| 26 | Import('examples_dir') |
|---|
| 27 | |
|---|
| 28 | files = Split(''' |
|---|
| 29 | snowland.py |
|---|
| 30 | ''') |
|---|
| 31 | |
|---|
| 32 | images = Split(''' |
|---|
| 33 | Images/lzsnow.jpg |
|---|
| 34 | Images/skymap.jpg |
|---|
| 35 | Images/tank.rgb |
|---|
| 36 | Images/treesnow.png |
|---|
| 37 | ''') |
|---|
| 38 | |
|---|
| 39 | models = Split(''' |
|---|
| 40 | Models/lzsnow.osg |
|---|
| 41 | Models/skydome.osg |
|---|
| 42 | ''') |
|---|
| 43 | |
|---|
| 44 | Alias('install-examples', Install(examples_dir.abspath + '/snowland', files)) |
|---|
| 45 | Alias('install-examples', Install(examples_dir.abspath + '/snowland/Images', images)) |
|---|
| 46 | Alias('install-examples', Install(examples_dir.abspath + '/snowland/Models', models)) |
|---|
Note: See
TracBrowser
for help on using the repository browser.