aboutsummaryrefslogtreecommitdiff
path: root/src/defaultsettings.cpp
Commit message (Expand)AuthorAge
* Map generation limit: Make per-worldparamat2017-03-27
* Change command prefix to "." and add "help" command.red-0012017-03-26
* Add mesh generation delaynumber Zero2017-03-26
* [CSM] Add enable_client_modding param (default: false)nerzhul2017-03-13
* Enable server side occlusion culling by default.Lars Hofhansl2017-03-11
* Allow server side occlusion culling.Lars Hofhansl2017-03-11
* Climb speed: Increase default setting from 2 to 3paramat2017-03-11
* Revert part of eb49009d023e6e3b5d59a97b8fb5fed5eee83296 (#5230)Auke Kok2017-02-16
* FreeType: address font license issues (#5230)Auke Kok2017-02-14
* Change default nodetimer_interval to 0.2s. (#5193)Auke Kok2017-02-09
* Add console height setting (#5136)Ezhh2017-01-30
* Add show_statusline_on_connect setting (#5084)Loïc Blot2017-01-21
* Fix build with freetype support disabledsfan52017-01-14
* Organize defaultsettings.cppShadowNinja2017-01-13
* Enable mod security by defaultShadowNinja2017-01-13
* Redo light.cpp.Auke Kok2016-12-28
* Process ABMs in a spherical volume instead of cubicLars Hofhansl2016-12-24
* Disable mod security by default (closes #4944)sfan52016-12-21
* Mapgen: Make mgv7 the default in UIAuke Kok2016-12-16
* Fog: Make fraction of visible distance at which fog starts configurableLars Hofhansl2016-12-07
* Optionally disable optimization that causes underwater and cave rendering gli...lhofhansl2016-10-30
* Changes to static object storage limit and error messageparamat2016-10-20
* Enable mod security by defaultShadowNinja2016-10-16
* Chat: new settings to prevent spamLoic Blot2016-10-05
* Increase default font size by 1James Stevenson2016-09-21
* Client: disable pre v25 init sending by defaultest312016-08-22
* Add zoom, tweakable with zoom_fov, default key: Z (like optifine)Esteban I. Ruiz Moreno2016-08-10
* Remove cinematic toggle on F8rubenwardy2016-07-05
* Disable joysticks per default for nowest312016-07-04
* Initial Gamepad supportest312016-06-03
* Add colored text (not only colored chat).Ekdohibs2016-05-31
* Mapgen V6: Synchronize spflags with defaultsettingskwolekr2016-05-10
* Defaultsettings/Android: Increase 'max block generate distance' to 3paramat2016-05-08
* Optimize default settings for Android buildMaksim Gamarnik2016-05-07
* Add option to disable entity selectionboxes. (#3992)TriBlade92016-04-14
* Allow NodeTimer, ABM and block mgmt interval changes.Auke Kok2016-03-19
* Add option to not send pre v25 init packetest312016-03-15
* Add options for screenshot format and qualityDiego Martinez2016-03-12
* Mapblock mesh: Allow to use VBORealBadAngel2016-02-26
* Remove new_style_waterRealBadAngel2016-02-26
* Add Lua interface to HTTPFetchRequestJeija2016-02-22
* Camera: remove auto tune FPS, single view range settingRealBadAngel2016-02-21
* Remove preload_item_visuals codeRealBadAngel2016-02-21
* Filmic HDR tone mappingRealBadAngel2016-02-09
* FindSpawnPos: Let mapgens decide what spawn altitude is suitableparamat2016-02-09
* Cleanup selection mesh code, add shaders for halo and selection boxesRealBadAngel2016-02-08
* Use meshes to display inventory itemsRealBadAngel2016-02-07
* Mapgen: Add global 'decorations' flagparamat2015-11-21
* WoW-style AutorunDuane Robertson2015-10-29
* findSpawnPos: Add setting for max height above water levelparamat2015-10-29
) get_filename_component(_cursesLibDir "${CURSES_NCURSESW_LIBRARY}" PATH) get_filename_component(_cursesParentDir "${_cursesLibDir}" PATH) find_path(CURSES_INCLUDE_PATH NAMES ncursesw/ncurses.h ncursesw/curses.h ncurses.h curses.h HINTS "${_cursesParentDir}/include" ) # Previous versions of FindCurses provided these values. if(NOT DEFINED CURSES_LIBRARY) set(CURSES_LIBRARY "${CURSES_NCURSESW_LIBRARY}") endif() CHECK_LIBRARY_EXISTS("${CURSES_NCURSESW_LIBRARY}" cbreak "" CURSES_NCURSESW_HAS_CBREAK) if(NOT CURSES_NCURSESW_HAS_CBREAK) find_library(CURSES_EXTRA_LIBRARY tinfo HINTS "${_cursesLibDir}" DOC "Path to libtinfo.so or .lib or .a") find_library(CURSES_EXTRA_LIBRARY tinfo ) endif() # Report whether each possible header name exists in the include directory. if(NOT DEFINED CURSES_HAVE_NCURSESW_NCURSES_H) if(EXISTS "${CURSES_INCLUDE_PATH}/ncursesw/ncurses.h") set(CURSES_HAVE_NCURSESW_NCURSES_H "${CURSES_INCLUDE_PATH}/ncursesw/ncurses.h") else() set(CURSES_HAVE_NCURSESW_NCURSES_H "CURSES_HAVE_NCURSESW_NCURSES_H-NOTFOUND") endif() endif() if(NOT DEFINED CURSES_HAVE_NCURSESW_CURSES_H) if(EXISTS "${CURSES_INCLUDE_PATH}/ncursesw/curses.h") set(CURSES_HAVE_NCURSESW_CURSES_H "${CURSES_INCLUDE_PATH}/ncursesw/curses.h") else() set(CURSES_HAVE_NCURSESW_CURSES_H "CURSES_HAVE_NCURSESW_CURSES_H-NOTFOUND") endif() endif() if(NOT DEFINED CURSES_HAVE_NCURSES_H) if(EXISTS "${CURSES_INCLUDE_PATH}/ncurses.h") set(CURSES_HAVE_NCURSES_H "${CURSES_INCLUDE_PATH}/ncurses.h") else() set(CURSES_HAVE_NCURSES_H "CURSES_HAVE_NCURSES_H-NOTFOUND") endif() endif() if(NOT DEFINED CURSES_HAVE_CURSES_H) if(EXISTS "${CURSES_INCLUDE_PATH}/curses.h") set(CURSES_HAVE_CURSES_H "${CURSES_INCLUDE_PATH}/curses.h") else() set(CURSES_HAVE_CURSES_H "CURSES_HAVE_CURSES_H-NOTFOUND") endif() endif() find_library(CURSES_FORM_LIBRARY form HINTS "${_cursesLibDir}" DOC "Path to libform.so or .lib or .a") find_library(CURSES_FORM_LIBRARY form ) # Need to provide the *_LIBRARIES set(CURSES_LIBRARIES ${CURSES_LIBRARY}) if(CURSES_EXTRA_LIBRARY) set(CURSES_LIBRARIES ${CURSES_LIBRARIES} ${CURSES_EXTRA_LIBRARY}) endif() if(CURSES_FORM_LIBRARY) set(CURSES_LIBRARIES ${CURSES_LIBRARIES} ${CURSES_FORM_LIBRARY}) endif() # Provide the *_INCLUDE_DIRS result. set(CURSES_INCLUDE_DIRS ${CURSES_INCLUDE_PATH}) set(CURSES_INCLUDE_DIR ${CURSES_INCLUDE_PATH}) # compatibility # handle the QUIETLY and REQUIRED arguments and set CURSES_FOUND to TRUE if # all listed variables are TRUE include(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(Ncursesw DEFAULT_MSG CURSES_LIBRARY CURSES_INCLUDE_PATH) set(CURSES_FOUND ${NCURSESW_FOUND}) else() find_package(Curses) set(NCURSESW_FOUND FALSE) endif() mark_as_advanced( CURSES_INCLUDE_PATH CURSES_CURSES_LIBRARY CURSES_NCURSES_LIBRARY CURSES_NCURSESW_LIBRARY CURSES_EXTRA_LIBRARY CURSES_FORM_LIBRARY )