# HG changeset patch # User Claus Gittinger # Date 1530603680 -7200 # Node ID f0220e0cb8436b1524f7875e298b08ac568baba5 # Parent 375b868e7be8392af9ebc1db92198051dc979de7 initial checkin diff -r 375b868e7be8 -r f0220e0cb843 stx_libscm.st --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/stx_libscm.st Tue Jul 03 09:41:20 2018 +0200 @@ -0,0 +1,39 @@ +"{ Package: 'stx:libscm' }" + +"{ NameSpace: Smalltalk }" + +LibraryDefinition subclass:#stx_libscm + instanceVariableNames:'' + classVariableNames:'' + poolDictionaries:'' + category:'* Projects & Packages *' +! + + +!stx_libscm class methodsFor:'description'! + +subProjects + "list packages which are known as subprojects. + The generated makefile will enter those and make there as well. + However: they are not forced to be loaded when a package is loaded; + for those, redefine #referencedPrerequisites or #mandatoryPreRequisites." + + ^ #( + #'stx:libscm/common' + #'stx:libscm/mercurial' + #'stx:libscm/github' + ) + + "Modified: / 03-07-2018 / 09:40:17 / Claus Gittinger" +! ! + +!stx_libscm class methodsFor:'documentation'! + +version + ^ '$Header$' +! + +version_CVS + ^ '$Header$' +! ! +