summaryrefslogtreecommitdiffhomepage
path: root/cmake
diff options
context:
space:
mode:
authorAckurus <84048003+Ackurus@users.noreply.github.com>2021-06-07 09:26:40 -0400
committerAckurus <84048003+Ackurus@users.noreply.github.com>2021-06-07 09:26:40 -0400
commita24e2b82a29701b53e1923237812368de8fb5e10 (patch)
tree4448a02c90ffdf5f5263c72971020ad8331b5d33 /cmake
parent6e31ccd0d01b1d693673f6ef9fb46f46fd934685 (diff)
Fix path to games.csv file for *nix builds.
Change the runtime document path so it will line up with the correct directory in *nix builds. Allows for the settings directory to be accessed such as the games.csv file.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/opentrack-hier.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/opentrack-hier.cmake b/cmake/opentrack-hier.cmake
index 16694d1f..6c4827e0 100644
--- a/cmake/opentrack-hier.cmake
+++ b/cmake/opentrack-hier.cmake
@@ -33,7 +33,7 @@ elseif(WIN32)
else()
set(opentrack-libexec "libexec/opentrack")
set(opentrack-runtime-libexec "/../${opentrack-libexec}/") # MUST HAVE A TRAILING BACKSLASH
- set(opentrack-runtime-doc "/share/doc/opentrack/") # MUST HAVE A TRAILING BACKSLASH
+ set(opentrack-runtime-doc "/../share/doc/opentrack/") # MUST HAVE A TRAILING BACKSLASH
set(opentrack-bin "bin")
set(opentrack-doc "./share/doc/opentrack")
set(opentrack-src "./share/doc/opentrack/source-code")