Disable Go and Rust examples and up project version

This commit is contained in:
C.Solovev 2018-10-01 13:40:38 +04:00
parent 56c2c8d672
commit 58cf836b76
2 changed files with 14 additions and 14 deletions

View File

@ -21,7 +21,7 @@ buildscript {
allprojects { allprojects {
apply plugin: 'java' apply plugin: 'java'
group 'com.github.cretz.asmble' group 'com.github.cretz.asmble'
version '0.4.0-fl' version '0.4.0-fl-fix'
repositories { repositories {
mavenCentral() mavenCentral()
@ -143,17 +143,17 @@ project(':examples') {
} }
project(':examples:go-simple') { //project(':examples:go-simple') {
apply plugin: 'application' // apply plugin: 'application'
ext.wasmCompiledClassName = 'asmble.generated.GoSimple' // ext.wasmCompiledClassName = 'asmble.generated.GoSimple'
dependencies { // dependencies {
compile files('build/wasm-classes') // compile files('build/wasm-classes')
} // }
compileJava { // compileJava {
dependsOn compileGoWasm // dependsOn compileGoWasm
} // }
mainClassName = 'asmble.examples.gosimple.Main' // mainClassName = 'asmble.examples.gosimple.Main'
} //}
// todo temporary disable Rust regex, because some strings in wasm code exceed the size in 65353 bytes. // todo temporary disable Rust regex, because some strings in wasm code exceed the size in 65353 bytes.

View File

@ -2,7 +2,7 @@ rootProject.name = 'asmble'
include 'annotations', include 'annotations',
'compiler', 'compiler',
'examples:c-simple', 'examples:c-simple',
'examples:go-simple', // 'examples:go-simple',
'examples:rust-regex', // 'examples:rust-regex', // todo will be enabled when the problem with string max size will be solved
'examples:rust-simple', 'examples:rust-simple',
'examples:rust-string' 'examples:rust-string'