initial checkin cvs_MAIN expeccoALM_1_12
authorClaus Gittinger <cg@exept.de>
Tue, 03 Jul 2018 09:41:20 +0200
branchcvs_MAIN
changeset 847 f0220e0cb843
parent 846 375b868e7be8
child 848 15c3d3cc8032
initial checkin
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$'
+! !
+