90d4acd1a1
Portable builds now have the same layout as system builds. If you want to build a portable bundle, you now need to additionally install the `portable` component. For example: $ cmake -Bbuild -DCMAKE_INSTALL_PREFIX=install ... $ cmake --build build $ cmake --install build $ cmake --install build --component portable
24 lines
1.3 KiB
CMake
24 lines
1.3 KiB
CMake
set(Launcher_CommonName "PolyMC")
|
|
|
|
set(Launcher_Copyright "PolyMC Contributors\\n© 2012-2021 MultiMC Contributors" PARENT_SCOPE)
|
|
set(Launcher_Domain "polymc.org" PARENT_SCOPE)
|
|
set(Launcher_Name "${Launcher_CommonName}" PARENT_SCOPE)
|
|
set(Launcher_DisplayName "${Launcher_CommonName}" PARENT_SCOPE)
|
|
set(Launcher_UserAgent "${Launcher_CommonName}/${Launcher_RELEASE_VERSION_NAME}" PARENT_SCOPE)
|
|
set(Launcher_ConfigFile "polymc.cfg" PARENT_SCOPE)
|
|
set(Launcher_Git "https://github.com/PolyMC/PolyMC" PARENT_SCOPE)
|
|
set(Launcher_DesktopFileName "org.polymc.PolyMC.desktop" PARENT_SCOPE)
|
|
|
|
set(Launcher_Desktop "program_info/org.polymc.PolyMC.desktop" PARENT_SCOPE)
|
|
set(Launcher_MetaInfo "program_info/org.polymc.PolyMC.metainfo.xml" PARENT_SCOPE)
|
|
set(Launcher_ManPage "program_info/polymc.6.txt" PARENT_SCOPE)
|
|
set(Launcher_SVG "program_info/org.polymc.PolyMC.svg" PARENT_SCOPE)
|
|
set(Launcher_Branding_ICNS "program_info/polymc.icns" PARENT_SCOPE)
|
|
set(Launcher_Branding_WindowsRC "program_info/polymc.rc" PARENT_SCOPE)
|
|
set(Launcher_Branding_LogoQRC "program_info/polymc.qrc" PARENT_SCOPE)
|
|
|
|
set(Launcher_Portable_File "program_info/portable.txt" PARENT_SCOPE)
|
|
|
|
configure_file(org.polymc.PolyMC.desktop.in org.polymc.PolyMC.desktop)
|
|
configure_file(org.polymc.PolyMC.metainfo.xml.in org.polymc.PolyMC.metainfo.xml)
|