mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-30 08:15:37 +00:00
Remove predefined data paths data="?global?data"
, data=./data
(#6564)
This commit is contained in:
parent
251327fb9c
commit
88a83bab1f
4 changed files with 1 additions and 6 deletions
|
@ -132,6 +132,7 @@
|
|||
Task #6201: Remove the "Note: No relevant classes found. No output generated" warnings
|
||||
Task #6264: Remove the old classes in animation.cpp
|
||||
Task #6553: Simplify interpreter instruction registration
|
||||
Task #6564: Remove predefined data paths `data="?global?data"`, `data=./data`
|
||||
|
||||
0.47.0
|
||||
------
|
||||
|
|
|
@ -181,7 +181,6 @@ endif()
|
|||
|
||||
# Set up common paths
|
||||
if (APPLE)
|
||||
set(MORROWIND_DATA_FILES "./data" CACHE PATH "location of Morrowind data files")
|
||||
set(OPENMW_RESOURCE_FILES "../Resources/resources" CACHE PATH "location of OpenMW resources files")
|
||||
elseif(UNIX)
|
||||
# Paths
|
||||
|
@ -199,10 +198,8 @@ elseif(UNIX)
|
|||
ENDIF()
|
||||
SET(SYSCONFDIR "${GLOBAL_CONFIG_PATH}/openmw" CACHE PATH "Set config dir")
|
||||
|
||||
set(MORROWIND_DATA_FILES "${DATADIR}/data" CACHE PATH "location of Morrowind data files")
|
||||
set(OPENMW_RESOURCE_FILES "${DATADIR}/resources" CACHE PATH "location of OpenMW resources files")
|
||||
else()
|
||||
set(MORROWIND_DATA_FILES "data" CACHE PATH "location of Morrowind data files")
|
||||
set(OPENMW_RESOURCE_FILES "resources" CACHE PATH "location of OpenMW resources files")
|
||||
endif(APPLE)
|
||||
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
# (see: https://openmw.readthedocs.io/en/master/reference/modding/paths.html)
|
||||
|
||||
content=builtin.omwscripts
|
||||
data=${MORROWIND_DATA_FILES}
|
||||
data-local="?userdata?data"
|
||||
resources=${OPENMW_RESOURCE_FILES}
|
||||
script-blacklist=Museum
|
||||
|
|
|
@ -3,8 +3,6 @@
|
|||
# (see: https://openmw.readthedocs.io/en/master/reference/modding/paths.html)
|
||||
|
||||
content=builtin.omwscripts
|
||||
data="?global?data"
|
||||
data=./data
|
||||
data-local="?userdata?data"
|
||||
resources=./resources
|
||||
script-blacklist=Museum
|
||||
|
|
Loading…
Reference in a new issue