Lastik-0.6.1: System/Build/Scala/Target.hs
-- | A module that represents the target levels to @scalac@ and @scaladoc@.
module System.Build.Scala.Target(
Target(..)
) where
-- | Specify for which target object files should be built (jvm-1.5,jvm-1.4,msil)
data Target = JVM15 -- ^ @jvm-1.5@
| JVM14 -- ^ @jvm-1.4@
| MSIL -- ^ @msil@
deriving Eq
instance Show Target where
show JVM15 = "jvm-1.5"
show JVM14 = "jvm-1.4"
show MSIL = "msil"