1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-09-15 18:57:08 +00:00

small fixes: crack texture, server build on windows, configuration file example, adding config file example to install

This commit is contained in:
Perttu Ahola 2011-02-16 20:03:31 +02:00
parent e06751aea0
commit 92432a28c0
5 changed files with 17 additions and 27 deletions

View file

@ -45,15 +45,18 @@ if(WIN32)
set(DATADIR "data")
set(BINDIR "bin")
set(DOCDIR "doc")
set(EXAMPLE_CONF_DIR ".")
elseif(APPLE)
# random placeholders
set(DATADIR "share/minetest")
set(BINDIR "bin")
set(DOCDIR "share/doc/minetest")
elseif(UNIX)
set(EXAMPLE_CONF_DIR ".")
elseif(UNIX) # Linux, BSD etc
set(DATADIR "usr/share/minetest")
set(BINDIR "usr/bin")
set(DOCDIR "usr/share/doc/minetest")
set(EXAMPLE_CONF_DIR "usr/share/doc/minetest")
endif()
install(FILES "doc/README.txt" DESTINATION "${DOCDIR}")