CMake working on Linux (not on windows)
[oweals/minetest.git] / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2 if(${CMAKE_VERSION} STREQUAL "2.8.2")
3   # bug http://vtk.org/Bug/view.php?id=11020
4   message( WARNING "CMake/CPack version 2.8.2 will not create working .deb packages!")
5 endif(${CMAKE_VERSION} STREQUAL "2.8.2")
6
7 set(CMAKE_BUILD_TYPE Debug)
8 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/")
9
10 # This is done here so that IRRDIR is relative to the typical cmake call directory
11 find_package(Irrlicht)
12
13 # This way the CMakeLists.txt file in src/ is processed
14 add_subdirectory(src)
15