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 {
apply plugin: 'java'
group 'com.github.cretz.asmble'
version '0.4.0-fl'
version '0.4.0-fl-fix'
repositories {
mavenCentral()
@ -143,17 +143,17 @@ project(':examples') {
}
project(':examples:go-simple') {
apply plugin: 'application'
ext.wasmCompiledClassName = 'asmble.generated.GoSimple'
dependencies {
compile files('build/wasm-classes')
}
compileJava {
dependsOn compileGoWasm
}
mainClassName = 'asmble.examples.gosimple.Main'
}
//project(':examples:go-simple') {
// apply plugin: 'application'
// ext.wasmCompiledClassName = 'asmble.generated.GoSimple'
// dependencies {
// compile files('build/wasm-classes')
// }
// compileJava {
// dependsOn compileGoWasm
// }
// mainClassName = 'asmble.examples.gosimple.Main'
//}
// 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',
'compiler',
'examples:c-simple',
'examples:go-simple',
'examples:rust-regex',
// 'examples:go-simple',
// 'examples:rust-regex', // todo will be enabled when the problem with string max size will be solved
'examples:rust-simple',
'examples:rust-string'