com.jtransc.annotation.JTranscAddLibraries Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-annotations Show documentation
Show all versions of jtransc-annotations Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
package com.jtransc.annotation;
import java.lang.annotation.*;
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.TYPE})
@Repeatable(value = JTranscAddLibrariesList.class)
public @interface JTranscAddLibraries {
String target();
String cond() default "";
String[] value();
}