Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/external/tolua/CMakeLists.txt @ 5929

Last change on this file since 5929 was 5929, checked in by rgrieder, 15 years ago

Merged core5 branch back to the trunk.
Key features include clean level unloading and an extended XML event system.

Two important notes:
Delete your keybindings.ini files! * or you will still get parser errors when loading the key bindings.
Delete build_dir/lib/modules/libgamestates.module! * or orxonox won't start.
Best thing to do is to delete the build folder ;)

  • Property svn:eol-style set to native
File size: 2.8 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++ library ###################
21
22SET_SOURCE_FILES(TOLUA++_FILES
23  tolua_event.h
24  tolua++.h
25COMPILATION_BEGIN ToluaCompilation.c
26  tolua_event.c
27  tolua_is.c
28  tolua_map.c
29  tolua_push.c
30  tolua_to.c
31COMPILATION_END
32)
33
34ORXONOX_ADD_LIBRARY(tolua++_orxonox
35  ORXONOX_EXTERNAL
36  DEFINE_SYMBOL
37    "TOLUA_SHARED_BUILD"
38  VERSION
39    1.0.92
40  LINK_LIBRARIES
41    ${LUA_LIBRARIES}
42  SOURCE_FILES
43    ${TOLUA++_FILES}
44)
45
46
47################## Tolua++ generator ##################
48
49ORXONOX_ADD_EXECUTABLE(tolua++app_orxonox
50  ORXONOX_EXTERNAL
51  VERSION
52    1.0.92
53  NO_INSTALL
54  LINK_LIBRARIES
55    ${LUA_LIBRARIES}
56  SOURCE_FILES
57    tolua.c
58)
59
60# Set some variables to the cache in order to use them in the TOLUA macro
61SET(TOLUA_PARSER_SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/all-${LUA_VERSION}.lua" CACHE INTERNAL "")
62SET(TOLUA_PARSER_DEPENDENCIES
63  tolua++app_orxonox
64  ${CMAKE_CURRENT_SOURCE_DIR}/all-${LUA_VERSION}.lua
65  ${CMAKE_CURRENT_SOURCE_DIR}/lua/compat-5.1.lua
66  ${CMAKE_CURRENT_SOURCE_DIR}/lua/compat.lua
67  ${CMAKE_CURRENT_SOURCE_DIR}/lua/basic.lua
68  ${CMAKE_CURRENT_SOURCE_DIR}/lua/feature.lua
69  ${CMAKE_CURRENT_SOURCE_DIR}/lua/verbatim.lua
70  ${CMAKE_CURRENT_SOURCE_DIR}/lua/code.lua
71  ${CMAKE_CURRENT_SOURCE_DIR}/lua/typedef.lua
72  ${CMAKE_CURRENT_SOURCE_DIR}/lua/container.lua
73  ${CMAKE_CURRENT_SOURCE_DIR}/lua/package.lua
74  ${CMAKE_CURRENT_SOURCE_DIR}/lua/module.lua
75  ${CMAKE_CURRENT_SOURCE_DIR}/lua/namespace.lua
76  ${CMAKE_CURRENT_SOURCE_DIR}/lua/define.lua
77  ${CMAKE_CURRENT_SOURCE_DIR}/lua/enumerate.lua
78  ${CMAKE_CURRENT_SOURCE_DIR}/lua/declaration.lua
79  ${CMAKE_CURRENT_SOURCE_DIR}/lua/variable.lua
80  ${CMAKE_CURRENT_SOURCE_DIR}/lua/array.lua
81  ${CMAKE_CURRENT_SOURCE_DIR}/lua/function.lua
82  ${CMAKE_CURRENT_SOURCE_DIR}/lua/operator.lua
83  ${CMAKE_CURRENT_SOURCE_DIR}/lua/class.lua
84  ${CMAKE_CURRENT_SOURCE_DIR}/lua/clean.lua
85  ${CMAKE_CURRENT_SOURCE_DIR}/lua/doit.lua
86
87  CACHE INTERNAL ""
88)
Note: See TracBrowser for help on using the repository browser.