Skip to content

Commit

Permalink
add BaselineOfOSWindow
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-krivanek committed Oct 19, 2019
1 parent 8f07581 commit a12c4d0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
26 changes: 2 additions & 24 deletions src/BaselineOfIDE/BaselineOfIDE.class.st
Expand Up @@ -243,15 +243,12 @@ BaselineOfIDE >> baseline: spec [
spec package: 'SmartSuggestions'.

spec package: 'OpalCompiler-Tools'.

spec package: 'OSWindow-Core'.
spec package: 'OSWindow-SDL2'.
spec package: 'OSWindow-VM'.

spec package: 'GeneralRules'.
spec package: 'GeneralRules-Tests'.
spec package: 'FuzzyMatcher'.

spec baseline: 'OSWindow' with: [ spec repository: repository ].
spec baseline: 'Refactoring' with: [ spec repository: repository ].
spec baseline: 'Catalog' with: [ spec repository: repository ].
spec baseline: 'Epicea' with: [ spec repository: repository ].
Expand Down Expand Up @@ -282,8 +279,6 @@ BaselineOfIDE >> baseline: spec [
spec package: 'Jobs-Tests'.
spec package: 'Manifest-Tests'.
spec package: 'Multilingual-Tests'.
spec package: 'OSWindow-SDL2-Examples'.
spec package: 'OSWindow-Tests'.
spec package: 'Pharo-Help'.
spec package: 'Random-Tests'.
spec package: 'ReflectionMirrors-Primitives-Tests'.
Expand Down Expand Up @@ -511,23 +506,6 @@ spec group: 'DependencyAnalyser-Group' with: #(
'DependencyAnalyser-Tests-Group'
).

spec group: 'OSWindow-Core-Group' with: #(
'Glamour-Core-Group' "dependency, cleanup needed"
'GT-Core-Group' "dependency, cleanup needed"
'Athens' "dependency"
'OSWindow-Core'
'OSWindow-SDL2'
'OSWindow-VM'
'OSWindow-SDL2-Examples'
).
spec group: 'OSWindow-Tests-Group' with: #(
'OSWindow-Tests'
).
spec group: 'OSWindow-Group' with: #(
'OSWindow-Core-Group'
'OSWindow-Tests-Group'
).

spec group: 'Kernel-Tests-Group' with: #(
'CodeImport-Tests'
'Collections-Tests'
Expand Down Expand Up @@ -599,7 +577,7 @@ spec group: #default with: #(
'GT&QA-Group'
"standalone but dependent:"
'OSWindow-Group'
'OSWindow'
'Refactoring'
'Catalog'
'Epicea'
Expand Down
21 changes: 21 additions & 0 deletions src/BaselineOfOSWindow/BaselineOfOSWindow.class.st
@@ -0,0 +1,21 @@
Class {
#name : #BaselineOfOSWindow,
#superclass : #BaselineOf,
#category : #BaselineOfOSWindow
}

{ #category : #baselines }
BaselineOfOSWindow >> baseline: spec [
<baseline>
spec for: #'common' do: [
spec
package: 'OSWindow-Core';
package: 'OSWindow-SDL2';
package: 'OSWindow-VM';
package: 'OSWindow-SDL2-Examples';
package: 'OSWindow-Tests'.
spec
group: 'Core' with: #('OSWindow-Core' 'OSWindow-SDL2' 'OSWindow-VM' 'OSWindow-SDL2-Examples');
group: 'Tests' with: #('OSWindow-Tests');
group: 'default' with: #('Core' 'Tests') ]
]
1 change: 1 addition & 0 deletions src/BaselineOfOSWindow/package.st
@@ -0,0 +1 @@
Package { #name : #BaselineOfOSWindow }

0 comments on commit a12c4d0

Please sign in to comment.