tests/stx_libtool_tests.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 11 Jun 2018 10:22:17 +0100
branchjv
changeset 18226 346376844040
parent 17730 9ae4a3d621e0
child 18272 eef85526ca1f
permissions -rw-r--r--
Copyright updates
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18226
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
     1
"
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
     2
 COPYRIGHT (c) 2017 Jan Vrany
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
     3
              All Rights Reserved
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
     4
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
     5
 This software is furnished under a license and may be used
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
     6
 only in accordance with the terms of that license and with the
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
     8
 be provided or otherwise made available to, or used by, any
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
     9
 other person.  No title to or ownership of the software is
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    10
 hereby transferred.
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    11
"
17730
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    12
"{ Package: 'stx:libtool/tests' }"
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    13
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    14
"{ NameSpace: Smalltalk }"
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    15
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    16
LibraryDefinition subclass:#stx_libtool_tests
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    17
	instanceVariableNames:''
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    18
	classVariableNames:''
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    19
	poolDictionaries:''
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    20
	category:'* Projects & Packages *'
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    21
!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    22
18226
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    23
!stx_libtool_tests class methodsFor:'documentation'!
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    24
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    25
copyright
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    26
"
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    27
 COPYRIGHT (c) 2017 Jan Vrany
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    28
              All Rights Reserved
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    29
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    30
 This software is furnished under a license and may be used
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    31
 only in accordance with the terms of that license and with the
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    33
 be provided or otherwise made available to, or used by, any
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    34
 other person.  No title to or ownership of the software is
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    35
 hereby transferred.
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    36
"
346376844040 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17730
diff changeset
    37
! !
17730
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    38
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    39
!stx_libtool_tests class methodsFor:'description'!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    40
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    41
excludedFromPreRequisites
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    42
    "obsolete; temporarily, this is still called for, but will eventually vanish.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    43
    
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    44
     List packages which are to be explicitely excluded from the automatic constructed
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    45
     prerequisites lists (both). 
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    46
     If empty, everything that is found along the inheritance of any of
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    47
     my classes is considered to be a prerequisite package."
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    48
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    49
    ^ #(
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    50
    )
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    51
!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    52
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    53
mandatoryPreRequisites
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    54
    "list packages which are mandatory as a prerequisite.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    55
     This are packages containing superclasses of my classes and classes which
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    56
     are extended by myself.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    57
     They are mandatory, because we need these packages as a prerequisite for loading and compiling.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    58
     This method is generated automatically,
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    59
     by searching along the inheritance chain of all of my classes.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    60
     Please take a look at the #referencedPreRequisites method as well."
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    61
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    62
    ^ #(
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    63
        #'stx:goodies/sunit'    "TestAsserter - superclass of Tools::NewSystemBrowserTests"
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    64
        #'stx:libbasic'    "LibraryDefinition - superclass of stx_libtool_tests"
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    65
    )
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    66
!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    67
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    68
referencedPreRequisites
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    69
    "list packages which are a prerequisite, because they contain
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    70
     classes which are referenced by my classes.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    71
     These packages are NOT needed as a prerequisite for compiling or loading,
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    72
     however, a class from it may be referenced during execution and having it
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    73
     unloaded then may lead to a runtime doesNotUnderstand error, unless the caller
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    74
     includes explicit checks for the package being present.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    75
     This method is generated automatically,
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    76
     by searching all classes (and their packages) which are referenced by my classes.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    77
     Please also take a look at the #mandatoryPreRequisites method"
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    78
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    79
    ^ #(
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    80
        #'stx:libbasic3'    "MessageTracer - referenced by Tools::NewSystemBrowserTests>>setUp"
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    81
        #'stx:libtool'    "Tools::NewSystemBrowser - referenced by Tools::NewSystemBrowserTests>>setUp"
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    82
        #'stx:libview'    "Color - referenced by Tools::NewSystemBrowserTests>>setUp"
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    83
    )
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    84
!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    85
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    86
subProjects
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    87
    "list packages which are known as subprojects.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    88
     The generated makefile will enter those and make there as well.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    89
     However: they are not forced to be loaded when a package is loaded;
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    90
     for those, redefine #referencedPrerequisites or #mandatoryPreRequisites."
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    91
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    92
    ^ #(
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    93
    )
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    94
! !
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    95
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    96
!stx_libtool_tests class methodsFor:'description - contents'!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    97
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    98
classNamesAndAttributes
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    99
    "lists the classes which are to be included in the project.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   100
     Each entry in the list may be: a single class-name (symbol),
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   101
     or an array-literal consisting of class name and attributes.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   102
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   103
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   104
    ^ #(
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   105
        "<className> or (<className> attributes...) in load order"
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   106
        #'Tools::NewSystemBrowserTests'
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   107
        #'stx_libtool_tests'
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   108
    )
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   109
!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   110
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   111
extensionMethodNames
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   112
    "lists the extension methods which are to be included in the project.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   113
     Entries are 2-element array literals, consisting of class-name and selector.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   114
     A correponding method with real names must be present in my concrete subclasses
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   115
     if it has extensions."
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   116
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   117
    ^ #(
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   118
    )
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   119
! !
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   120
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   121
!stx_libtool_tests class methodsFor:'description - project information'!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   122
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   123
companyName
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   124
    "Returns a company string which will appear in <lib>.rc.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   125
     Under win32, this is placed into the dll's file-info.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   126
     Other systems may put it elsewhere, or ignore it."
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   127
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   128
    ^ 'Claus Gittinger & eXept Software AG'
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   129
!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   130
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   131
description
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   132
    "Returns a description string which will appear in nt.def / bc.def"
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   133
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   134
    ^ 'Smalltalk/X Class library'
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   135
!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   136
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   137
legalCopyright
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   138
    "Returns a copyright string which will appear in <lib>.rc.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   139
     Under win32, this is placed into the dll's file-info.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   140
     Other systems may put it elsewhere, or ignore it."
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   141
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   142
    ^ 'Copyright Claus Gittinger 2017\nCopyright eXept Software AG 2017'
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   143
!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   144
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   145
productName
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   146
    "Returns a product name which will appear in <lib>.rc.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   147
     Under win32, this is placed into the dll's file-info.
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   148
     This method is usually redefined in a concrete application definition"
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   149
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   150
    ^ 'Smalltalk/X'
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   151
! !
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   152
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   153
!stx_libtool_tests class methodsFor:'documentation'!
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   154
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   155
version_HG
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   156
    ^ '$Changeset: <not expanded> $'
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   157
! !
9ae4a3d621e0 Issue #108: Added some tests for issue #108
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   158