mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-23 10:09:22 +01:00
Update executable names to follow new naming scheme
This commit is contained in:
parent
36b46ce034
commit
467afbb041
@ -11,7 +11,7 @@ BASE_ARTIFACT_ARCH="${BASE_ARTIFACT##*-}"
|
|||||||
mv $BASE_ARTIFACT $BUNDLE_DIR
|
mv $BASE_ARTIFACT $BUNDLE_DIR
|
||||||
|
|
||||||
# Executable binary paths that need to be combined.
|
# Executable binary paths that need to be combined.
|
||||||
BIN_PATHS=(lime lime-room lime-qt.app/Contents/MacOS/lime-qt)
|
BIN_PATHS=(lime3ds-cli lime3ds-room lime3ds-gui.app/Contents/MacOS/lime3ds-gui)
|
||||||
|
|
||||||
# Dylib paths that need to be combined.
|
# Dylib paths that need to be combined.
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
@ -37,7 +37,7 @@ for OTHER_ARTIFACT in "${ARTIFACTS_LIST[@]:1}"; do
|
|||||||
done
|
done
|
||||||
|
|
||||||
# Re-sign executables and bundles after combining.
|
# Re-sign executables and bundles after combining.
|
||||||
APP_PATHS=(lime lime-room lime-qt.app)
|
APP_PATHS=(lime3ds-cli lime3ds-room lime3ds-gui.app)
|
||||||
for APP_PATH in "${APP_PATHS[@]}"; do
|
for APP_PATH in "${APP_PATHS[@]}"; do
|
||||||
codesign --deep -fs - $BUNDLE_DIR/$APP_PATH
|
codesign --deep -fs - $BUNDLE_DIR/$APP_PATH
|
||||||
done
|
done
|
||||||
|
4
dist/lime3ds-cli.desktop
vendored
4
dist/lime3ds-cli.desktop
vendored
@ -7,8 +7,8 @@ GenericName[fr]=Émulateur 3DS
|
|||||||
Comment=Nintendo 3DS video game console emulator
|
Comment=Nintendo 3DS video game console emulator
|
||||||
Comment[fr]=Émulateur de console de jeu Nintendo 3DS
|
Comment[fr]=Émulateur de console de jeu Nintendo 3DS
|
||||||
Icon=lime
|
Icon=lime
|
||||||
TryExec=lime
|
TryExec=lime3ds-cli
|
||||||
Exec=lime %f
|
Exec=lime3ds-cli %f
|
||||||
Categories=Game;Emulator;
|
Categories=Game;Emulator;
|
||||||
MimeType=application/x-ctr-3dsx;application/x-ctr-cci;application/x-ctr-cia;application/x-ctr-cxi;
|
MimeType=application/x-ctr-3dsx;application/x-ctr-cci;application/x-ctr-cia;application/x-ctr-cxi;
|
||||||
Keywords=3DS;Nintendo;
|
Keywords=3DS;Nintendo;
|
||||||
|
4
dist/lime3ds-gui.desktop
vendored
4
dist/lime3ds-gui.desktop
vendored
@ -7,8 +7,8 @@ GenericName[fr]=Émulateur 3DS
|
|||||||
Comment=Nintendo 3DS video game console emulator
|
Comment=Nintendo 3DS video game console emulator
|
||||||
Comment[fr]=Émulateur de console de jeu Nintendo 3DS
|
Comment[fr]=Émulateur de console de jeu Nintendo 3DS
|
||||||
Icon=lime
|
Icon=lime
|
||||||
TryExec=lime-qt
|
TryExec=lime3ds-gui
|
||||||
Exec=lime-qt %f
|
Exec=lime3ds-gui %f
|
||||||
Categories=Game;Emulator;Qt;
|
Categories=Game;Emulator;Qt;
|
||||||
MimeType=application/x-ctr-3dsx;application/x-ctr-cci;application/x-ctr-cia;application/x-ctr-cxi;
|
MimeType=application/x-ctr-3dsx;application/x-ctr-cci;application/x-ctr-cia;application/x-ctr-cxi;
|
||||||
Keywords=3DS;Nintendo;
|
Keywords=3DS;Nintendo;
|
||||||
|
4
dist/lime3ds-room.desktop
vendored
4
dist/lime3ds-room.desktop
vendored
@ -4,7 +4,7 @@ Type=Application
|
|||||||
Name=Lime3DS Room
|
Name=Lime3DS Room
|
||||||
Comment=Multiplayer room host for Lime3DS
|
Comment=Multiplayer room host for Lime3DS
|
||||||
Icon=lime
|
Icon=lime
|
||||||
TryExec=lime-room
|
TryExec=lime3ds-room
|
||||||
Exec=lime-room %f
|
Exec=lime3ds-room %f
|
||||||
Categories=Game;Emulator;
|
Categories=Game;Emulator;
|
||||||
Keywords=3DS;Nintendo
|
Keywords=3DS;Nintendo
|
||||||
|
@ -6,6 +6,8 @@ add_executable(lime-room
|
|||||||
lime-room.rc
|
lime-room.rc
|
||||||
)
|
)
|
||||||
|
|
||||||
|
set_target_properties(lime-room PROPERTIES OUTPUT_NAME "lime3ds-room")
|
||||||
|
|
||||||
create_target_directory_groups(lime-room)
|
create_target_directory_groups(lime-room)
|
||||||
|
|
||||||
target_link_libraries(lime-room PRIVATE lime_common network)
|
target_link_libraries(lime-room PRIVATE lime_common network)
|
||||||
|
@ -12,6 +12,8 @@ add_executable(lime
|
|||||||
resource.h
|
resource.h
|
||||||
)
|
)
|
||||||
|
|
||||||
|
set_target_properties(lime PROPERTIES OUTPUT_NAME "lime3ds-cli")
|
||||||
|
|
||||||
if (ENABLE_SOFTWARE_RENDERER)
|
if (ENABLE_SOFTWARE_RENDERER)
|
||||||
target_sources(lime PRIVATE
|
target_sources(lime PRIVATE
|
||||||
emu_window/emu_window_sdl2_sw.cpp
|
emu_window/emu_window_sdl2_sw.cpp
|
||||||
|
@ -191,6 +191,8 @@ add_executable(lime-qt
|
|||||||
util/util.h
|
util/util.h
|
||||||
)
|
)
|
||||||
|
|
||||||
|
set_target_properties(lime-qt PROPERTIES OUTPUT_NAME "lime3ds-gui")
|
||||||
|
|
||||||
file(GLOB COMPAT_LIST
|
file(GLOB COMPAT_LIST
|
||||||
${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.qrc
|
${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.qrc
|
||||||
${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json)
|
${PROJECT_BINARY_DIR}/dist/compatibility_list/compatibility_list.json)
|
||||||
|
Loading…
Reference in New Issue
Block a user