2022-06-26 23:06:48 +05:30
|
|
|
if(UNIX)
|
|
|
|
find_package(PkgConfig)
|
|
|
|
if(PkgConfig_FOUND)
|
|
|
|
pkg_search_module(SCDOC scdoc)
|
|
|
|
if(SCDOC_FOUND)
|
|
|
|
pkg_get_variable(SCDOC_SCDOC scdoc scdoc)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-12-20 08:11:08 +05:30
|
|
|
set(Launcher_CommonName "PolyMC")
|
|
|
|
|
2022-06-12 23:51:56 +05:30
|
|
|
set(Launcher_Copyright "PolyMC Contributors\\n© 2012-2021 MultiMC Contributors")
|
|
|
|
set(Launcher_Copyright "${Launcher_Copyright}" PARENT_SCOPE)
|
2022-01-27 10:21:29 +05:30
|
|
|
set(Launcher_Domain "polymc.org" PARENT_SCOPE)
|
2021-12-20 08:11:08 +05:30
|
|
|
set(Launcher_Name "${Launcher_CommonName}" PARENT_SCOPE)
|
2022-01-15 04:03:34 +05:30
|
|
|
set(Launcher_DisplayName "${Launcher_CommonName}" PARENT_SCOPE)
|
|
|
|
set(Launcher_UserAgent "${Launcher_CommonName}/${Launcher_RELEASE_VERSION_NAME}" PARENT_SCOPE)
|
2021-12-20 08:11:08 +05:30
|
|
|
set(Launcher_ConfigFile "polymc.cfg" PARENT_SCOPE)
|
2021-12-28 07:19:42 +05:30
|
|
|
set(Launcher_Git "https://github.com/PolyMC/PolyMC" PARENT_SCOPE)
|
2022-02-10 13:26:34 +05:30
|
|
|
set(Launcher_DesktopFileName "org.polymc.PolyMC.desktop" PARENT_SCOPE)
|
2021-12-20 08:11:08 +05:30
|
|
|
|
2022-02-09 15:27:16 +05:30
|
|
|
set(Launcher_Desktop "program_info/org.polymc.PolyMC.desktop" PARENT_SCOPE)
|
2022-01-04 02:11:31 +05:30
|
|
|
set(Launcher_MetaInfo "program_info/org.polymc.PolyMC.metainfo.xml" PARENT_SCOPE)
|
2022-01-04 04:16:05 +05:30
|
|
|
set(Launcher_SVG "program_info/org.polymc.PolyMC.svg" PARENT_SCOPE)
|
2022-01-01 03:06:59 +05:30
|
|
|
set(Launcher_Branding_ICNS "program_info/polymc.icns" PARENT_SCOPE)
|
2022-05-30 22:26:29 +05:30
|
|
|
set(Launcher_Branding_ICO "program_info/polymc.ico")
|
|
|
|
set(Launcher_Branding_ICO "${Launcher_Branding_ICO}" PARENT_SCOPE)
|
2022-01-01 03:06:59 +05:30
|
|
|
set(Launcher_Branding_WindowsRC "program_info/polymc.rc" PARENT_SCOPE)
|
|
|
|
set(Launcher_Branding_LogoQRC "program_info/polymc.qrc" PARENT_SCOPE)
|
|
|
|
|
2022-03-23 17:50:14 +05:30
|
|
|
set(Launcher_Portable_File "program_info/portable.txt" PARENT_SCOPE)
|
|
|
|
|
2022-02-09 15:27:16 +05:30
|
|
|
configure_file(org.polymc.PolyMC.desktop.in org.polymc.PolyMC.desktop)
|
2022-01-10 00:21:46 +05:30
|
|
|
configure_file(org.polymc.PolyMC.metainfo.xml.in org.polymc.PolyMC.metainfo.xml)
|
2022-05-29 16:16:44 +05:30
|
|
|
configure_file(polymc.rc.in polymc.rc @ONLY)
|
|
|
|
configure_file(polymc.manifest.in polymc.manifest @ONLY)
|
|
|
|
configure_file(polymc.ico polymc.ico COPYONLY)
|
2022-05-30 22:26:29 +05:30
|
|
|
configure_file(win_install.nsi.in win_install.nsi @ONLY)
|
2022-06-26 23:06:48 +05:30
|
|
|
|
|
|
|
if(SCDOC_FOUND)
|
|
|
|
set(in_scd "${CMAKE_CURRENT_SOURCE_DIR}/polymc.6.scd")
|
|
|
|
set(out_man "${CMAKE_CURRENT_BINARY_DIR}/polymc.6")
|
|
|
|
add_custom_command(
|
|
|
|
DEPENDS "${in_scd}"
|
|
|
|
OUTPUT "${out_man}"
|
|
|
|
COMMAND ${SCDOC_SCDOC} < "${in_scd}" > "${out_man}"
|
|
|
|
)
|
|
|
|
add_custom_target(man ALL DEPENDS ${out_man})
|
|
|
|
set(Launcher_ManPage "program_info/polymc.6" PARENT_SCOPE)
|
|
|
|
endif()
|