Mac: point to directories from a nested app

This commit is contained in:
Benitoite 2019-06-15 23:11:29 -07:00 committed by GitHub
parent 2ed66677b8
commit 8a8536702e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ endif()
if(NOT DEFINED DATADIR)
if(BUILD_BUNDLE)
if(APPLE)
set(DATADIR "../Resources")
set(DATADIR "../../Resources")
else()
set(DATADIR .)
endif()
@ -176,7 +176,7 @@ endif()
if(NOT DEFINED LIBDIR)
if(BUILD_BUNDLE)
if(APPLE)
set(LIBDIR "../Frameworks")
set(LIBDIR "../../Frameworks")
else()
set(LIBDIR .)
endif()