Skip to content

Commit 6e1b8c0

Browse files
committed
Add baseline
1 parent 4c59940 commit 6e1b8c0

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

.project

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
'srcDirectory' : ''
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
Class {
2+
#name : #BaselineOfLibTensorFlowPharoBinding,
3+
#superclass : #BaselineOf,
4+
#category : #BaselineOfLibTensorFlowPharoBinding
5+
}
6+
7+
{ #category : #baseline }
8+
BaselineOfLibTensorFlowPharoBinding >> baseline: spec [
9+
<baseline>
10+
spec
11+
for: #common
12+
do: [
13+
"Dependencies"
14+
self
15+
idxReader: spec;
16+
roassal2: spec.
17+
18+
"Packages"
19+
spec
20+
package: 'LibTensorFlow-Core' with: [ spec requires: #(IdxReader) ];
21+
package: 'LibTensorFlow-Examples' with: [ spec requires: #('LibTensorFlow-Core' 'Roassal2') ].
22+
23+
"Groups"
24+
spec
25+
group: 'Core' with: #('LibTensorFlow-Core');
26+
group: 'Examples' with: #('LibTensorFlow-Examples') ]
27+
]
28+
29+
{ #category : #baseline }
30+
BaselineOfLibTensorFlowPharoBinding >> idxReader: spec [
31+
spec baseline: 'IdxReader' with: [ spec repository: 'github://guillep/idx-reader' ]
32+
]
33+
34+
{ #category : #baseline }
35+
BaselineOfLibTensorFlowPharoBinding >> roassal2: spec [
36+
spec baseline: 'Roassal2' with: [ spec repository: 'github://ObjectProfile/Roassal2/src' ]
37+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Package { #name : #BaselineOfLibTensorFlowPharoBinding }

0 commit comments

Comments
 (0)