]> OCCT Git - occt-wok.git/commitdiff
Initial revision
authorcas <cas@opencascade.com>
Fri, 5 Nov 1999 18:24:35 +0000 (18:24 +0000)
committercas <cas@opencascade.com>
Fri, 5 Nov 1999 18:24:35 +0000 (18:24 +0000)
src/WOKBuilderDef/CPPJINI.edl [new file with mode: 0755]
src/WOKBuilderDef/JAVA.edl [new file with mode: 0755]

diff --git a/src/WOKBuilderDef/CPPJINI.edl b/src/WOKBuilderDef/CPPJINI.edl
new file mode 100755 (executable)
index 0000000..13a6f77
--- /dev/null
@@ -0,0 +1,35 @@
+-- File:       CPPJINI.edl
+-- Author:     Jean GAUTIER
+-- History:    Wed Apr 10 17:44:37 1996        Jean GAUTIER    Creation
+-- Copyright:   Matra Datavision 1996
+
+@ifnotdefined ( %CPPJINI_EDL) then
+@set %CPPJINI_EDL = "";
+
+@if ( %Station != "wnt" ) then
+@if ( %LocalArch != "hp" ) then
+  @set %CPPJINI_SHARED   = "libCPPJini.so";
+@endif;
+
+@if ( %LocalArch == "hp" ) then
+  @set %CPPJINI_SHARED   = "libCPPJini.sl";
+@endif;
+
+--@set %CPPCLIENT_TMPLDIRS = "/home/wb/kl/nw/prod/CPPClient/src";
+@set %CPPJINI_NAME     = "CPPJini";
+
+@if ( %LocalArch != "hp" ) then
+  @set %CPPJINI_Shared   = "libCPPJini.so";
+@endif;
+
+@if ( %LocalArch == "hp" ) then
+  @set %CPPJINI_Shared   = "libCPPJini.sl";
+@endif;
+
+@else
+  @set %CPPJINI_Shared   = "CPPJini.dll";
+@endif;
+
+@set %CPPJINI_Name   = "CPPJini";
+
+@endif;
diff --git a/src/WOKBuilderDef/JAVA.edl b/src/WOKBuilderDef/JAVA.edl
new file mode 100755 (executable)
index 0000000..cc3cd10
--- /dev/null
@@ -0,0 +1,20 @@
+@ifnotdefined(%JAVA_EDL) then
+
+@set %JAVA_EDL = "";
+
+@set %JAVA_Home = "/PRODUCTS/java/jdk1.2";
+@string %JAVA_Command = %JAVA_Home "/bin/javac";
+@string %JAVA_HeaderCommand = %JAVA_Home "/bin/javah";
+@set %JAVA_Options = "";
+@set %JAVA_HeaderOptions = "";
+
+@template JAVA_Compiler(%JAVA_Command,%JAVA_Options,%IncludeDir,%Source,%OutDir) is
+$%JAVA_Command %JAVA_Options -classpath %IncludeDir -d %OutDir %Source 
+@end;
+
+@template JAVA_Header(%JAVA_HeaderCommand,%JAVA_HeaderOptions,%IncludeDir,%Class,%OutFile) is
+$%JAVA_HeaderCommand %JAVA_HeaderOptions -classpath %IncludeDir -o %OutFile %Class
+@end;
+
+
+@endif;