OS specific configurations.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2020-10-09 13:06:59 -05:00
parent 6d90259387
commit ea56597ee7
1 changed files with 7 additions and 3 deletions

View File

@ -17,11 +17,15 @@ BaselineOfFossil >> baseline: spec [
"Dependencies"
spec
baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ];
baseline: 'OSSubprocess' with: [ spec repository: 'github://pharo-contributions/OSSubprocess:master/repository'].
baseline: 'OSSubprocess' with: [ spec repository: 'github://pharo-contributions/OSSubprocess:master/repository'];
baseline: 'ProcessWrapper' with: [ spec repository: 'github://hernanmd/ProcessWrapper/repository' ].
"Packages"
spec package: 'Fossil' with: [ spec requires: #('NeoJSON' 'OSSubprocess') ].
spec package: 'Fossil' with: [ spec requires: #('NeoJSON') ].
spec for: #(#'MacOS' #'Unix') do: [
spec package: 'Fossil' with: [ spec requires: #('OSSubprocess') ] ].
spec for: #'Windows' do: [
spec package: 'Fossil' with: [ spec requires: #('OSSubprocess') ] ].
]