Add baseline

This commit is contained in:
2022-03-21 15:42:40 +01:00
parent b22d0d75af
commit 988c1a8383
3 changed files with 19 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# Carp Parser # Carp
A Carp parser for the Glamorous Toolkit, using SmaCC. contains Carp language support for the Glamorous Toolkit.
<hr/> <hr/>

View File

@@ -0,0 +1,16 @@
Class {
#name : #BaselineOfCarp,
#superclass : #BaselineOf,
#category : #BaselineOfCarp
}
{ #category : #baseline }
BaselineOfCarp >> baseline: spec [
<baseline>
spec for: #common do: [
spec
baseline: 'GToolkit4SmaCC'
with: [ spec repository: 'github://feenkcom/gt4smacc:main/src' ].
spec package: 'Carp' with: [ spec requires: #( 'GToolkit4SmaCC' ) ] ]
]

View File

@@ -0,0 +1 @@
Package { #name : #BaselineOfCarp }