You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/09/29 14:35:41 UTC

svn commit: r819965 - /incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/win32/pom.xml

Author: spoole
Date: Tue Sep 29 14:35:41 2009
New Revision: 819965

URL: http://svn.apache.org/viewvc?rev=819965&view=rev
Log:
rolled back win32 pom for vm api native as it had become the linux version

Modified:
    incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/win32/pom.xml

Modified: incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/win32/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/win32/pom.xml?rev=819965&r1=819964&r2=819965&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/win32/pom.xml (original)
+++ incubator/kato/trunk/org.apache.kato/kato.native/kato.native.vmapi/win32/pom.xml Tue Sep 29 14:35:41 2009
@@ -1,24 +1,8 @@
-<project>
-
-  <modelVersion>4.0.0</modelVersion>
-  <description>Create Windows 32bit version of Kato VM native library</description>
-
-  <parent>
-    <groupId>org.apache.kato</groupId>
-    <artifactId>kato.native.vmapi</artifactId>
-    <version>0.0.1-SNAPSHOT</version>
-  </parent>
-
-  <groupId>org.apache.kato.native</groupId>
+  <artifactId>katovmapi</artifactId>
   
+  <name>Win32 Version of Kato VM Native Library</name>
   
-    
-    
-   <artifactId>libkatovmapi</artifactId>
-  
-  <name>Linux x86  Version of Kato VM Native Library</name>
-  
-  <packaging>so</packaging>
+  <packaging>dll</packaging>
   
   
   
@@ -29,12 +13,12 @@
         <artifactId>native-maven-plugin</artifactId>
         <extensions>true</extensions>   
         <configuration>
-        
+         <compilerProvider>msvc</compilerProvider>
           <compilerStartOptions>
-            <compilerStartOption>-fPIC -O</compilerStartOption>
+            <compilerStartOption>/LD /D "WIN32"  /DBUILD_DLL</compilerStartOption>
           </compilerStartOptions>
           
-          <javahOS>linux</javahOS>
+          <javahOS>win32</javahOS>
           
           <sources>
             <source>
@@ -50,8 +34,8 @@
           </sources>
             
           
-           <linkerStartOptions>
-            <linkerStartOption>-shared</linkerStartOption>
+          <linkerStartOptions>
+            <linkerStartOption>/DLL</linkerStartOption>
           </linkerStartOptions>
           
           
@@ -76,7 +60,7 @@
                 <resource>
                   <directory>${basedir}/target/</directory>
                   <includes>
-         			 <include>*.so</include>
+         			 <include>*.dll</include>
 				  </includes>
                 </resource>
               </resources>