mirror of
https://github.com/minetest/minetest.git
synced 2024-11-08 16:53:47 +01:00
b9adf244e5
removes any dynamic linking capability, which will stop being possible soon anyway.
25 lines
609 B
CMake
25 lines
609 B
CMake
cmake_minimum_required(VERSION 3.12)
|
|
|
|
project(Irrlicht LANGUAGES CXX)
|
|
|
|
message(STATUS "*** Building IrrlichtMt ***")
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type: Debug or Release" FORCE)
|
|
endif()
|
|
|
|
# FIXME: tests need to be moved to MT if we want to keep them
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
|
#enable_testing()
|
|
add_subdirectory(src)
|
|
#add_subdirectory(test)
|
|
|
|
#option(BUILD_EXAMPLES "Build example applications" FALSE)
|
|
#if(BUILD_EXAMPLES)
|
|
# add_subdirectory(examples)
|
|
#endif()
|