Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 30, 2009, 4:40:20 PM (15 years ago)
Author:
rgrieder
Message:

Added license text to all CMake files except to the subdirectoties of the libraries.
Also adjusted some the Find script documentation and wrote Descriptions for every file not in src/.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/cmake/CheckOGREPlugins.cmake

    r2624 r2626  
    1 #    Author: Reto '1337' Grieder (2008)
    2 #
    3 #    This program is free software; you can redistribute it and/or modify
    4 #    it under the terms of the GNU General Public License as published by
    5 #    the Free Software Foundation; either version 2 of the License, or
    6 #    (at your option) any later version.
    7 #
    8 #    This program is distributed in the hope that it will be useful,
    9 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
    10 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    11 #    GNU General Public License for more details.
    12 #
    13 #    You should have received a copy of the GNU General Public License
    14 #    along with this program; if not, write to the Free Software
    15 #    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
    16 
    17 ###################################################
    18 # Make sure we have the required plugins for OGRE #
    19 ###################################################
     1 #
     2 #             ORXONOX - the hottest 3D action shooter ever to exist
     3 #                             > www.orxonox.net <
     4 #
     5 #        This program is free software; you can redistribute it and/or
     6 #         modify it under the terms of the GNU General Public License
     7 #        as published by the Free Software Foundation; either version 2
     8 #            of the License, or (at your option) any later version.
     9 #
     10 #       This program is distributed in the hope that it will be useful,
     11 #        but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 #        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13 #                 GNU General Public License for more details.
     14 #
     15 #   You should have received a copy of the GNU General Public License along
     16 #      with this program; if not, write to the Free Software Foundation,
     17 #     Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
     18 #
     19 #
     20 #  Author:
     21 #    Reto Grieder
     22 #  Description:
     23 #    Function that checks each OGRE plugin for existance. Also looks for debug
     24 #    versions and sets them accordingly.
     25 #    All the plugins specified as function arguments have to be found or the
     26 #    script will issue a fatal error. Additionally, all release plugins have
     27 #    to be found in the same folder. Analogously for debug plugins.
     28 #    Output:
     29 #    OGRE_PLUGINS_FOLDER_DEBUG   Folder with the debug plugins
     30 #    OGRE_PLUGINS_FOLDER_RELEASE Folder with the release plugins
     31 #    OGRE_PLUGINS_DEBUG          Names of the debug plugins without extension
     32 #    OGRE_PLUGINS_RELEASE        Names of the release plugins without ext.
     33 #
    2034
    2135FUNCTION(CHECK_OGRE_PLUGINS)
Note: See TracChangeset for help on using the changeset viewer.