0.0.1 • Published 8 years ago

grunt-vlc-libs v0.0.1

Weekly downloads
1
License
GPL-2.0
Repository
github
Last release
8 years ago

grunt-vlc-libs

Grunt task to download VLC Libs for WebChimera.js

Install

$ npm install --save-dev grunt-vlc-libs

Usage

require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks

grunt.initConfig({
	vlc_libs: {
        options: {
            dir: 'VLC', // Output dir
            force: true, // Overwrite 
            arch: 'ia32', // ia32 / x64 
            platform: 'win' // win / osx / linux
        }
    }
});

grunt.registerTask('default', ['vlc_libs']);