stx_libscm.st
branchcvs_MAIN
changeset 847 f0220e0cb843
child 877 ed55127e1176
equal deleted inserted replaced
846:375b868e7be8 847:f0220e0cb843
       
     1 "{ Package: 'stx:libscm' }"
       
     2 
       
     3 "{ NameSpace: Smalltalk }"
       
     4 
       
     5 LibraryDefinition subclass:#stx_libscm
       
     6 	instanceVariableNames:''
       
     7 	classVariableNames:''
       
     8 	poolDictionaries:''
       
     9 	category:'* Projects & Packages *'
       
    10 !
       
    11 
       
    12 
       
    13 !stx_libscm class methodsFor:'description'!
       
    14 
       
    15 subProjects
       
    16     "list packages which are known as subprojects.
       
    17      The generated makefile will enter those and make there as well.
       
    18      However: they are not forced to be loaded when a package is loaded;
       
    19      for those, redefine #referencedPrerequisites or #mandatoryPreRequisites."
       
    20 
       
    21     ^ #(
       
    22         #'stx:libscm/common'
       
    23         #'stx:libscm/mercurial'
       
    24         #'stx:libscm/github'
       
    25     )
       
    26 
       
    27     "Modified: / 03-07-2018 / 09:40:17 / Claus Gittinger"
       
    28 ! !
       
    29 
       
    30 !stx_libscm class methodsFor:'documentation'!
       
    31 
       
    32 version
       
    33     ^ '$Header$'
       
    34 !
       
    35 
       
    36 version_CVS
       
    37     ^ '$Header$'
       
    38 ! !
       
    39