diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-10-31 15:54:21 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-10-31 15:54:21 -0400 |
commit | 107e03ea13e0eba9c33f120f0d95ac9fefc7dcad (patch) | |
tree | 00191b7ccb83fe436ad61bdbb43b523f431c6698 /js/gulpfile.js | |
parent | Update 3.7 changelog (diff) | |
download | ice-107e03ea13e0eba9c33f120f0d95ac9fefc7dcad.tar.bz2 ice-107e03ea13e0eba9c33f120f0d95ac9fefc7dcad.tar.xz ice-107e03ea13e0eba9c33f120f0d95ac9fefc7dcad.zip |
Replaced slice compiler options --ice, --underscore and --dll-export by
global metadata directives (ice-prefix, underscore, cpp:dll-export:SYMBOL and objc:dll-export:SYMBOL)
Added new cs:tie and java:tie metadata
Diffstat (limited to 'js/gulpfile.js')
-rw-r--r-- | js/gulpfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/gulpfile.js b/js/gulpfile.js index be6ca15a7c2..f2417614cb2 100644 --- a/js/gulpfile.js +++ b/js/gulpfile.js @@ -346,7 +346,7 @@ libs.forEach( gulp.task(generateTask(lib), function(){ return gulp.src(sources.slice.map(sliceFile)) - .pipe(slice2js({args: ["--ice"], dest: srcDir(lib)})) + .pipe(slice2js({dest: srcDir(lib)})) .pipe(gulp.dest(srcDir(lib))); }); |