Field parsing handling; Make a new string pool everytime when loading a class; Call...
[SquirrelJME.git] / emulators / build.gradle
blobc7c57fc10ebde077f4bca78f998ef74c53185e54
1 import org.gradle.plugins.ide.idea.model.IdeaLanguageLevel
3 group = "cc.squirreljme.squirreljme.emulators"
4 description = "This module contains all of the emulators available for " +
5         "running SquirrelJME. These run on top of Java SE itself."
7 subprojects
9         apply plugin: "idea"
10         
11         idea {
12                 module
13                 {
14                         // The emulators run on Java 8 because this is for the host VM
15                         // which can take advantage of this.
16                         jdkName = "1.8"
17                         
18                         // Compile as this
19                         languageLevel = new IdeaLanguageLevel("1.8")
20                         targetBytecodeVersion = JavaVersion.VERSION_1_8
21                 }
22         }