Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/kicklib/src/external/tolua/CMakeLists.txt @ 7944

Last change on this file since 7944 was 7944, checked in by rgrieder, 14 years ago

Renamed Lua library to "Lua5.1" because that's also what the official Linux repositories call it to differentiate it from Lua v5.0.
Also simplified the CMake find script a lot since it doesn't have to find both Lua versions anymore.

  • Property svn:eol-style set to native
File size: 2.3 KB
Line 
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################## Tolua++ generator ##################
21
22ORXONOX_ADD_EXECUTABLE(toluaapp_orxonox
23  ORXONOX_EXTERNAL
24  VERSION
25    1.0.92
26  NO_INSTALL
27  LINK_LIBRARIES
28    ${LUA5.1_LIBRARY}
29  SOURCE_FILES
30    tolua.c
31)
32
33# Set some variables to the cache in order to use them in the TOLUA macro
34SET(TOLUA_PARSER_SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/all-5.1.lua" CACHE INTERNAL "")
35SET(TOLUA_PARSER_DEPENDENCIES
36  toluaapp_orxonox
37  ${CMAKE_CURRENT_SOURCE_DIR}/all-5.1.lua
38  ${CMAKE_CURRENT_SOURCE_DIR}/lua/compat-5.1.lua
39  ${CMAKE_CURRENT_SOURCE_DIR}/lua/compat.lua
40  ${CMAKE_CURRENT_SOURCE_DIR}/lua/basic.lua
41  ${CMAKE_CURRENT_SOURCE_DIR}/lua/feature.lua
42  ${CMAKE_CURRENT_SOURCE_DIR}/lua/verbatim.lua
43  ${CMAKE_CURRENT_SOURCE_DIR}/lua/code.lua
44  ${CMAKE_CURRENT_SOURCE_DIR}/lua/typedef.lua
45  ${CMAKE_CURRENT_SOURCE_DIR}/lua/container.lua
46  ${CMAKE_CURRENT_SOURCE_DIR}/lua/package.lua
47  ${CMAKE_CURRENT_SOURCE_DIR}/lua/module.lua
48  ${CMAKE_CURRENT_SOURCE_DIR}/lua/namespace.lua
49  ${CMAKE_CURRENT_SOURCE_DIR}/lua/define.lua
50  ${CMAKE_CURRENT_SOURCE_DIR}/lua/enumerate.lua
51  ${CMAKE_CURRENT_SOURCE_DIR}/lua/declaration.lua
52  ${CMAKE_CURRENT_SOURCE_DIR}/lua/variable.lua
53  ${CMAKE_CURRENT_SOURCE_DIR}/lua/array.lua
54  ${CMAKE_CURRENT_SOURCE_DIR}/lua/function.lua
55  ${CMAKE_CURRENT_SOURCE_DIR}/lua/operator.lua
56  ${CMAKE_CURRENT_SOURCE_DIR}/lua/class.lua
57  ${CMAKE_CURRENT_SOURCE_DIR}/lua/clean.lua
58  ${CMAKE_CURRENT_SOURCE_DIR}/lua/doit.lua
59
60  CACHE INTERNAL ""
61)
Note: See TracBrowser for help on using the repository browser.