mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix data directory path
This commit is contained in:
parent
b909575a6c
commit
faae0db84c
1
CHANGES
1
CHANGES
|
@ -151,6 +151,7 @@ Bugfixes:
|
|||
- Qt: Fix memory search close button (fixes mgba.io/i/769)
|
||||
- Qt: Fix window icon being stretched
|
||||
- Qt: Fix initial window size (fixes mgba.io/i/766)
|
||||
- Qt: Fix data directory path
|
||||
Misc:
|
||||
- Qt: Add language selector
|
||||
|
||||
|
|
|
@ -209,7 +209,7 @@ if(NOT DEFINED DATADIR)
|
|||
if(APPLE)
|
||||
set(DATADIR Applications/${PROJECT_NAME}.app/Contents/Resources)
|
||||
else()
|
||||
set(DATADIR ${CMAKE_INSTALL_DATADIR}/${BINARY_NAME})
|
||||
set(DATADIR ${CMAKE_INSTALL_FULL_DATADIR}/${BINARY_NAME})
|
||||
endif()
|
||||
endif()
|
||||
install(DIRECTORY ${CMAKE_SOURCE_DIR}/res/shaders DESTINATION ${DATADIR} COMPONENT ${BINARY_NAME}-qt)
|
||||
|
@ -253,7 +253,7 @@ install(TARGETS ${BINARY_NAME}-qt
|
|||
if(UNIX AND NOT APPLE)
|
||||
find_program(DESKTOP_FILE_INSTALL desktop-file-install)
|
||||
if(DESKTOP_FILE_INSTALL)
|
||||
install(CODE "execute_process(COMMAND ${DESKTOP_FILE_INSTALL} \"${CMAKE_SOURCE_DIR}/res/mgba-qt.desktop\" --dir \"\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/applications/\")")
|
||||
install(CODE "execute_process(COMMAND ${DESKTOP_FILE_INSTALL} \"${CMAKE_SOURCE_DIR}/res/mgba-qt.desktop\" --dir \"\$ENV{DESTDIR}\${CMAKE_INSTALL_FULL_DATADIR}/applications/\")")
|
||||
endif()
|
||||
endif()
|
||||
if(UNIX)
|
||||
|
|
Loading…
Reference in New Issue