PCT ANT for OE102.A .NET

Posted by MBeynon on 18-Nov-2016 02:37

Hello,

I'd like to use PCT ANT to build an OE development that contains a mix of TTY, GUI  and non GUI class files. Does anyone have an example of the relevant section of a pct ANT build script that compiles OE .NET GUI files?

Many Thanks,


Mark.

Posted by MBeynon on 18-Nov-2016 02:59

That's great, thankyou.

Posted by Mike Fechner on 18-Nov-2016 02:42

OE .NET GUI is not that much different from any other PCT Compile:
 
        <PCTCompile destDir="." graphicalMode="true" dlcHome="${progress.DLC}"
            md5="true" minSize="false" cpinternal="iso8859-1" cpstream="iso8859-1"
            compileUnderscore="true" inputchars="16000" assemblies="Assemblies"
            iniFile="ini/progress.ini" token="4000" progPerc="10" tempDir="/temp">
            <fileset dir="." casesensitive="false">
                <patternset refid="smartcomponents.sources.smartcomponents"/>
            </fileset>
   
            <propath refid="smartcomponents.propath.default" />
            <DBConnection dbName="sports2000" dbDir="../DB/sports2000" singleUser="false" />
        </PCTCompile>  
 
Graphical mode should be true and assemblies must be set.

All Replies

Posted by Mike Fechner on 18-Nov-2016 02:42

OE .NET GUI is not that much different from any other PCT Compile:
 
        <PCTCompile destDir="." graphicalMode="true" dlcHome="${progress.DLC}"
            md5="true" minSize="false" cpinternal="iso8859-1" cpstream="iso8859-1"
            compileUnderscore="true" inputchars="16000" assemblies="Assemblies"
            iniFile="ini/progress.ini" token="4000" progPerc="10" tempDir="/temp">
            <fileset dir="." casesensitive="false">
                <patternset refid="smartcomponents.sources.smartcomponents"/>
            </fileset>
   
            <propath refid="smartcomponents.propath.default" />
            <DBConnection dbName="sports2000" dbDir="../DB/sports2000" singleUser="false" />
        </PCTCompile>  
 
Graphical mode should be true and assemblies must be set.

Posted by MBeynon on 18-Nov-2016 02:59

That's great, thankyou.

This thread is closed