This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For all available options, see node_modules/pho-dev-stack/config.js | |
// These are production build settings, see gulpfile.js for development settings | |
var gulp = require('gulp'); | |
var extend = require('node.extend'); | |
var substituteConfig = require('./substitute-config'); | |
require('pho-devstack')(gulp, { | |
dist: { | |
/* Directories and file patterns for build output */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function( grunt ) { | |
'use strict'; | |
// Compile and run program after code change | |
// | |
// Assumptions: | |
// 1) One cpp file named 1.cpp | |
// 2) One resulting binary a.out compiled with g++ | |
grunt.initConfig({ |