Skip to content

Generate AppImages automatically from your CMake build process

License

Notifications You must be signed in to change notification settings

Ravbug/AppImage.cmake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AppImage.cmake

This repository contains a CMake script which facilitates generating AppImage executables for Linux. It handles downloading AppImageTool, setting up the AppDir, and invoking AppImageTool to generate the AppImage.

Usage:

Invoke as an install action:

INSTALL(CODE 
  "include(../appimage.cmake)
  make_appimage(
        EXE \"path/to/your/built/executable\"
        NAME \"YourAppName\"
        ICON \"path/to/your/icon.svg\"
        DIR_ICON \"path/to/your/diricon.png\"
        OUTPUT_NAME \"where/to/write/App.AppImage\"
        ASSETS \"A list;of all extra files;to copy to the folder\"
    )
	" 
	COMPONENT Runtime
)

For an example, see how it is used in the RavEngine sample projects.

Reporting Bugs and Feature Requests

Please report all issues to the Issues section of this repository.

About

Generate AppImages automatically from your CMake build process

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages