-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added BaselineOfSustainableSimulations
- Loading branch information
1 parent
5117abb
commit 4c05938
Showing
3 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
[ | ||
SquotTonelMapper { | ||
#package : MCPackage { | ||
#name : 'SustainableSimulations' | ||
#name : 'BaselineOfSustainableSimulations' | ||
}, | ||
#path : FSAbsolutePath [ | ||
'src' | ||
] | ||
}, | ||
SquotTonelMapper { | ||
#package : MCPackage { | ||
#name : 'SustainableSimulations' | ||
}, | ||
#path : @4 | ||
} | ||
] |
21 changes: 21 additions & 0 deletions
21
src/BaselineOfSustainableSimulations/BaselineOfSustainableSimulations.class.st
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Class { | ||
#name : #BaselineOfSustainableSimulations, | ||
#superclass : #BaselineOf, | ||
#category : #BaselineOfSustainableSimulations | ||
} | ||
|
||
{ | ||
#category : #baseline, | ||
#'squeak_changestamp' : 'PM 7/12/2024 22:39' | ||
} | ||
BaselineOfSustainableSimulations >> baseline: spec [ | ||
<baseline> | ||
spec for: #common do: [ | ||
spec package: 'SustainableSimulations-Core'; | ||
package: 'SustainableSimulations-UI' with: [spec requires: #('SustainableSimulations-Core')]; | ||
package: 'SustainableSimulations-Road' with: [spec requires: #('SustainableSimulations-Core' 'SustainableSimulations-UI')]; | ||
package: 'SustainableSimulations-RoadStrategy' with: [spec requires: #('SustainableSimulations-Core' 'SustainableSimulations-Road')]; | ||
package: 'SustainableSimulations-Tests' with: [spec requires: #('default')]; | ||
group: 'default' with: #('SustainableSimulations-Core' 'SustainableSimulations-UI' 'SustainableSimulations-Road' 'SustainableSimulations-RoadStrategy'); | ||
group: 'tests' with: #('SustainableSimulations-Tests')] | ||
] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Package { | ||
#'squeak_changestamp' : true, | ||
#name : #BaselineOfSustainableSimulations | ||
} |