Skip to content
Snippets Groups Projects
deployment.pri 447 B
Newer Older
  • Learn to ignore specific revisions
  • akiraohgaki's avatar
    akiraohgaki committed
    unix:!android {
        isEmpty(PREFIX) {
            PREFIX = /usr/local
        }
    
        SRCDIR = src
        BINDIR = $${PREFIX}/bin
        DATADIR = $${PREFIX}/share
    
        target.path = $${BINDIR}
    
    
        desktop.files = $${SRCDIR}/desktop/$${TARGET}.desktop
        desktop.path = $${DATADIR}/applications
    
    akiraohgaki's avatar
    akiraohgaki committed
    
        icon.files = $${SRCDIR}/desktop/$${TARGET}.svg
        icon.path = $${DATADIR}/icons/hicolor/scalable/apps
    
    
        INSTALLS += target desktop icon
    
    akiraohgaki's avatar
    akiraohgaki committed
    }
    
    export(INSTALLS)