Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LARA
inox
Commits
9bd0b744
Commit
9bd0b744
authored
14 years ago
by
Philippe Suter
Browse files
Options
Downloads
Patches
Plain Diff
improved SBT script
parent
dc81fd82
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
project/build/funcheck.scala
+26
-8
26 additions, 8 deletions
project/build/funcheck.scala
resources/funcheck/scalac-plugin.xml
+0
-0
0 additions, 0 deletions
resources/funcheck/scalac-plugin.xml
with
26 additions
and
8 deletions
project/build/funcheck.scala
+
26
−
8
View file @
9bd0b744
import
sbt._
import
sbt._
class
FunCheckProject
(
info
:
ProjectInfo
)
extends
Defaul
tProject
(
info
)
{
class
FunCheckProject
(
info
:
ProjectInfo
)
extends
Paren
tProject
(
info
)
{
override
def
outputDirectoryName
=
"bin"
override
def
outputDirectoryName
=
"bin"
override
def
mainScalaSourcePath
=
"src"
override
def
mainResourcesPath
=
"resources"
override
def
dependencyPath
=
"lib"
override
def
dependencyPath
=
"lib"
override
def
shouldCheckOutputDirectories
=
false
lazy
val
purescala
=
project
(
"."
,
"PureScala Definitions"
,
new
PureScalaProject
(
_
))
lazy
val
plugin
=
project
(
"."
,
"FunCheck Plugin"
,
new
PluginProject
(
_
),
purescala
)
lazy
val
multisets
=
project
(
"."
,
"Multiset Solver"
,
new
MultisetsProject
(
_
),
plugin
,
purescala
)
override
def
compileOptions
=
super
.
compileOptions
++
Seq
(
Unchecked
)
sealed
abstract
class
PersonalizedProject
(
info
:
ProjectInfo
)
extends
DefaultProject
(
info
)
{
override
def
dependencyPath
=
"lib"
override
def
outputDirectoryName
=
"bin"
override
def
compileOptions
=
super
.
compileOptions
++
Seq
(
Unchecked
)
}
lazy
val
scalac
=
task
{
class
PureScalaProject
(
info
:
ProjectInfo
)
extends
PersonalizedProject
(
info
)
{
println
(
"Running scalac..."
)
override
def
outputPath
=
"bin"
/
"purescala"
None
override
def
mainScalaSourcePath
=
"src"
/
"purescala"
}
dependsOn
(
`package`
)
describedAs
(
"Runs scalac with the FunCheck plugin."
)
}
class
PluginProject
(
info
:
ProjectInfo
)
extends
PersonalizedProject
(
info
)
{
override
def
outputPath
=
"bin"
/
"funcheck"
override
def
mainScalaSourcePath
=
"src"
/
"funcheck"
override
def
unmanagedClasspath
=
super
.
unmanagedClasspath
+++
purescala
.
jarPath
override
def
mainResourcesPath
=
"resources"
/
"funcheck"
}
class
MultisetsProject
(
info
:
ProjectInfo
)
extends
PersonalizedProject
(
info
)
{
override
def
outputPath
=
"bin"
/
"multisets"
override
def
mainScalaSourcePath
=
"src"
/
"multisets"
override
def
unmanagedClasspath
=
super
.
unmanagedClasspath
+++
purescala
.
jarPath
}
}
}
This diff is collapsed.
Click to expand it.
resources/scalac-plugin.xml
→
resources/
funcheck/
scalac-plugin.xml
+
0
−
0
View file @
9bd0b744
File moved
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment