jgrenon / angular-desktop-app

This is a simple application skeleton to create desktop application using AngularJS. This application is using node-webkit as our desktop host, bower to install client-side libraries as well as normal npm modules as supported by node-webkit.
MIT License
237 stars 57 forks source link

Cross-platform build #19

Closed daaru00 closed 9 years ago

daaru00 commented 9 years ago

Can i build application for all OS in a single build command?

Now i used to change this line of Gruntfile.js

nodewebkit: {
            options: {
                version: nwVer,
                build_dir: './',
                mac: false,
                win: false,
                linux32: false,
                linux64: true,
                keep_nw: false,
                zip: false,
                mac_icns:'./src/images/angular-desktop-app.icns'
            },
            src: ['./src/**/*']
        },

I'll switch the value of OS that i want to build

daaru00 commented 9 years ago

sorry, I tried to set all params to true and it work!