game gui: implemented SingleChildContainer.
[fail.git] / CMakeLists.txt
blob80a2e97ae74c79d03f5bf2ba7e7e32f5758dcafe
2 #   Fail game engine
3 #   Copyright 2007 Antoine Chavasse <a.chavasse@gmail.com>
4
5 #   This file is part of Fail.
7 #   Fail is free software; you can redistribute it and/or modify
8 #   it under the terms of the GNU General Public License version 3
9 #   as published by the Free Software Foundation.
11 #   Fail is distributed in the hope that it will be useful,
12 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #   GNU General Public License for more details.
16 #   You should have received a copy of the GNU General Public License
17 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 project( Fail C CXX )
21 set( CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR} )
23 set( LUA_MODULES_PATH ${CMAKE_INSTALL_PREFIX}/share/fail/lua-modules )
24 add_definitions( -DINSTALL_PREFIX='"${CMAKE_INSTALL_PREFIX}"' )
25 add_definitions( -DLUA_MODULES_PATH='"${LUA_MODULES_PATH}"' )
27 if( CMAKE_COMPILER_IS_GNUCXX )
28         add_definitions( -fvisibility=hidden -std=c++0x -pipe -fPIC -pedantic -Wall -Wno-unused -Wno-switch -Wno-long-long )
29 endif( CMAKE_COMPILER_IS_GNUCXX )
31 if( UNIX )
32         set( FAIL_EXPORT "__attribute (( visibility (\"default\") ))" )
33         set( FAIL_IMPORT "__attribute (( visibility (\"default\") ))" )
34 endif( UNIX )
37 if( WIN32 )
38 # This should work both with gcc and vc++ (although there seem to be no point in
39 # ever building this with vc++, assuming that vc++ one day implements c++0x)
40         set( FAIL_EXPORT "__declspec(dllexport)" )
41         set( FAIL_IMPORT "__declspec(dllimport)" )
42 endif( WIN32 )
44 include_directories(
45         ${PROJECT_SOURCE_DIR}
46         ${PROJECT_SOURCE_DIR}/src
47         ${PROJECT_BINARY_DIR}/include
48         ${PROJECT_SOURCE_DIR}/libs
50 link_directories( ${PROJECT_SOURCE_DIR}/libs )
52 subdirs(
53         libs
54         src
55         lua-modules