mirror of
https://github.com/jellyfin/jellyfin-media-player.git
synced 2024-11-27 00:00:38 +00:00
12 lines
319 B
CMake
12 lines
319 B
CMake
set(MAIN_TARGET JellyfinMediaPlayer)
|
|
|
|
# Name of the output binary, defaults are only used on Linux
|
|
set(MAIN_NAME jellyfinmediaplayer)
|
|
|
|
if(APPLE)
|
|
set(MAIN_NAME "Jellyfin Media Player")
|
|
elseif(WIN32)
|
|
set(MAIN_NAME "JellyfinMediaPlayer")
|
|
endif(APPLE)
|
|
|
|
configure_file(src/shared/Names.cpp.in src/shared/Names.cpp @ONLY) |