You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by nm...@apache.org on 2006/07/03 13:51:54 UTC

svn commit: r418749 [17/17] - in /incubator/activemq/trunk/activemq-cpp: ./ src/ src/main/ src/main/activemq/ src/main/activemq/concurrent/ src/main/activemq/connector/ src/main/activemq/connector/openwire/ src/main/activemq/connector/stomp/ src/main/a...

Added: incubator/activemq/trunk/activemq-cpp/unix/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-cpp/unix/pom.xml?rev=418749&view=auto
==============================================================================
--- incubator/activemq/trunk/activemq-cpp/unix/pom.xml (added)
+++ incubator/activemq/trunk/activemq-cpp/unix/pom.xml Mon Jul  3 04:51:36 2006
@@ -0,0 +1,78 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  
+  <modelVersion>4.0.0</modelVersion>
+  
+  <parent>
+    <groupId>activemq</groupId>
+    <artifactId>activemq-cpp-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  
+  <artifactId>libactivemq-cpp</artifactId>
+  <name>ActiveMQ :: CPP :: UNIX</name>
+  <description>The C++ client library for interfacing with an ActiveMQ broker</description>
+  <packaging>a</packaging>  
+
+  <build>
+  	  <finalName>${artifactId}</finalName>	  
+	  <plugins>
+	      <plugin>
+	      
+	        <!-- configure the Mojo native plugin -->
+	        <groupId>org.codehaus.mojo</groupId>
+	        <artifactId>native-maven-plugin</artifactId>
+	        <version>1.0-alpha-1-SNAPSHOT</version>
+	        <extensions>true</extensions>
+	             
+	        <configuration>
+	        
+	          <!-- All compiler flags are determined by the profile -->
+	          <compilerProvider>generic</compilerProvider>
+	          <compilerStartOptions>
+	            <compilerStartOption>${compiler.options}</compilerStartOption>
+	          </compilerStartOptions>
+	          <linkerExecutable>ar</linkerExecutable>
+	          <linkerStartOptions>
+	            <linkerStartOption>-r</linkerStartOption>
+	          </linkerStartOptions>
+	          
+	      	</configuration>
+	      	
+	      </plugin>
+	    </plugins>
+  </build>
+  
+  <profiles>
+  	<profile>
+    
+      <id>release</id>
+      <activation>
+        <activeByDefault>true</activeByDefault>
+      </activation>
+      
+      <properties>
+	    <compiler.options>-frtti -pthread -O3 -DNDEBUG -D_REENTRANT</compiler.options>
+  	  </properties>
+  	  
+    </profile>
+    
+    <profile>
+    
+      <id>debug</id>
+      <activation>
+        <property>
+          <name>debug</name>
+        </property>
+      </activation>
+      
+      <properties>
+	    <compiler.options>-frtti -g -pthread -DDEBUG -D_DEBUG -D_REENTRANT</compiler.options>
+  	  </properties>
+  	  
+    </profile>
+    
+  </profiles>
+
+</project>

Added: incubator/activemq/trunk/activemq-cpp/win32-gcc/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-cpp/win32-gcc/pom.xml?rev=418749&view=auto
==============================================================================
--- incubator/activemq/trunk/activemq-cpp/win32-gcc/pom.xml (added)
+++ incubator/activemq/trunk/activemq-cpp/win32-gcc/pom.xml Mon Jul  3 04:51:36 2006
@@ -0,0 +1,78 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  
+  <modelVersion>4.0.0</modelVersion>
+  
+  <parent>
+    <groupId>activemq</groupId>
+    <artifactId>activemq-cpp-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  
+  <artifactId>libactivemq-cpp</artifactId>
+  <name>ActiveMQ :: CPP :: WIN32 :: GCC</name>
+  <description>The C++ client library for interfacing with an ActiveMQ broker</description>
+  <packaging>a</packaging>  
+
+  <build>
+  	  <finalName>${artifactId}</finalName>	  
+	  <plugins>
+	      <plugin>
+	      
+	        <!-- configure the Mojo native plugin -->
+	        <groupId>org.codehaus.mojo</groupId>
+	        <artifactId>native-maven-plugin</artifactId>
+	        <version>1.0-alpha-1-SNAPSHOT</version>
+	        <extensions>true</extensions>
+	             
+	        <configuration>
+	        
+	          <!-- All compiler flags are determined by the profile -->
+	          <compilerProvider>generic</compilerProvider>
+	          <compilerStartOptions>
+	            <compilerStartOption>${compiler.options}</compilerStartOption>
+	          </compilerStartOptions>
+	          <linkerExecutable>ar</linkerExecutable>
+	          <linkerStartOptions>
+	            <linkerStartOption>-r</linkerStartOption>
+	          </linkerStartOptions>
+	          
+	      	</configuration>
+	      	
+	      </plugin>
+	    </plugins>
+  </build>
+  
+  <profiles>
+  	<profile>
+    
+      <id>release</id>
+      <activation>
+        <activeByDefault>true</activeByDefault>
+      </activation>
+      
+      <properties>
+	    <compiler.options>-frtti -pthread -O3 -DNDEBUG -D_REENTRANT -D_WIN32 -DWINVER=0x0502 -DWIN32_LEAN_AND_MEAN</compiler.options>
+  	  </properties>
+  	  
+    </profile>
+    
+    <profile>
+    
+      <id>debug</id>
+      <activation>
+        <property>
+          <name>debug</name>
+        </property>
+      </activation>
+      
+      <properties>
+	    <compiler.options>-frtti -g -pthread -DDEBUG -D_DEBUG -D_REENTRANT -D_WIN32 -DWINVER=0x0502 -DWIN32_LEAN_AND_MEAN</compiler.options>
+  	  </properties>
+  	  
+    </profile>
+    
+  </profiles>
+
+</project>

Added: incubator/activemq/trunk/activemq-cpp/win32-msvc/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-cpp/win32-msvc/pom.xml?rev=418749&view=auto
==============================================================================
--- incubator/activemq/trunk/activemq-cpp/win32-msvc/pom.xml (added)
+++ incubator/activemq/trunk/activemq-cpp/win32-msvc/pom.xml Mon Jul  3 04:51:36 2006
@@ -0,0 +1,80 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  
+  <modelVersion>4.0.0</modelVersion>
+  
+  <parent>
+    <groupId>activemq</groupId>
+    <artifactId>activemq-cpp-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  
+  <artifactId>activemq-cpp</artifactId>
+  <name>ActiveMQ :: CPP :: WIN32 :: MSVC</name>
+  <description>The C++ client library for interfacing with an ActiveMQ broker</description>
+  <packaging>lib</packaging>  
+
+  <build>
+  	  <finalName>${artifactId}</finalName>	  
+	  <plugins>
+	      <plugin>
+	      
+	        <!-- configure the Mojo native plugin -->
+	        <groupId>org.codehaus.mojo</groupId>
+	        <artifactId>native-maven-plugin</artifactId>
+	        <version>1.0-alpha-1-SNAPSHOT</version>
+	        <extensions>true</extensions>
+	             
+	        <configuration>
+	        
+	          <!-- All compiler flags are determined by the profile -->
+	          <compilerProvider>msvc</compilerProvider>
+	          <env.factory.name>org.codehaus.mojo.natives.msvc.MSVC2005x86EnvFactory</env.factory.name>
+	          <compilerStartOptions>
+	            <compilerStartOption>${compiler.options}</compilerStartOption>
+	          </compilerStartOptions>
+	          <linkerExecutable>lib</linkerExecutable>
+	          <linkerStartOptions>
+	            <linkerStartOption></linkerStartOption>
+	          </linkerStartOptions>
+	          
+	      	</configuration>
+	      	
+	      </plugin>
+	    </plugins>
+  </build>
+  
+  <profiles>
+  	<profile>
+    
+      <id>release</id>
+      <activation>
+        <activeByDefault>true</activeByDefault>
+      </activation>
+      
+      <properties>
+	    <compiler.options>/INCREMENTAL:NO /O2 /D WIN32 /D NDEBUG /D _LIB /D WIN32_LEAN_AND_MEAN /D _CRT_SECURE_NO_DEPRECATE /FD /EHsc /MD /Fo"Release\\" /Fd"Release\vc80.pdb" /W2 /nologo /c /Wp64 /Zi /TP</compiler.options>
+  	  </properties>
+  	  
+    </profile>
+    
+    <profile>
+    
+      <id>debug</id>
+      <activation>
+        <property>
+          <name>debug</name>
+        </property>
+      </activation>
+      
+      <properties>
+	    <compiler.options>/INCREMENTAL:NO /Od /D WIN32 /D _DEBUG /D _LIB /D WIN32_LEAN_AND_MEAN /D _CRT_SECURE_NO_DEPRECATE /Gm /EHsc /RTC1 /MDd /Fo"Debug\\" /Fd"Debug\vc80.pdb" /W2 /nologo /c /Wp64 /ZI /TP</compiler.options>
+  	  </properties>
+  	  
+    </profile>
+    
+  </profiles>
+
+</project>
+