Created
September 10, 2013 17:33
-
-
Save metasim/6512806 to your computer and use it in GitHub Desktop.
Fragment for setting the JDK path for sbt-javafx plugin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JFX.devKit := { | |
System.getProperty("os.name").toLowerCase match { | |
case w if w.startsWith("win") => JFX.jdk("C:/Program Files/Java/jdk1.7.0_25") | |
case _ => JFX.jdk(javaHome.value.toString) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment