Skip to content
Snippets Groups Projects
Commit 46f8864b authored by Stéphane Poirier's avatar Stéphane Poirier
Browse files

remove before fix

parent 20f4fb53
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>super-pom-C-CPP</artifactId>
<groupId>fr.soleil</groupId>
<version>RELEASE</version>
</parent>
<groupId>fr.soleil.lib</groupId>
<artifactId>NexusCPP-${aol}-${library}-${mode}</artifactId>
<version>3.4.0</version>
<packaging>nar</packaging>
<name>NexusCPP</name>
<description>NexusCPP library</description>
<developers>
<developer>
<id>poirier</id>
<name>poirier</name>
<email>stephane.poirier@synchrotron-soleil.fr</email>
<url>http://www.synchrotron-soleil.fr</url>
<organization>Synchrotron Soleil</organization>
<organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
<roles>
<role>manager</role>
</roles>
<timezone>1</timezone>
</developer>
</developers>
<scm>
<connection>${scm.connection.svn.tango-cs}/share/nexuscpp</connection>
<developerConnection>${scm.developerConnection.svn.tango-cs}/share/nexuscpp</developerConnection>
<url>${scm.url.svn.tango-cs}/share/nexuscpp</url>
</scm>
<profiles>
<profile>
<id>nexuscpp_linux</id>
<activation>
<os>
<family>Linux</family>
</os>
</activation>
<dependencies>
<dependency>
<groupId>fr.soleil.lib</groupId>
<artifactId>YAT-${aol}-${library}-${mode}</artifactId>
</dependency>
<dependency>
<groupId>ncsa.uiuc.edu</groupId>
<artifactId>HDF5-${aol}-shared-${mode}</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>nexuscpp_win32</id>
<activation>
<os>
<family>Windows</family>
</os>
</activation>
<dependencies>
<dependency>
<groupId>fr.soleil.lib</groupId>
<artifactId>YAT-${aol}-${library}-${mode}</artifactId>
</dependency>
<dependency>
<groupId>ncsa.uiuc.edu</groupId>
<artifactId>HDF5-${aol}-shared-release</artifactId>
<version>1.8.18</version>
</dependency>
</dependencies>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.freehep</groupId>
<artifactId>freehep-nar-plugin</artifactId>
<configuration>
<cpp>
<sourceDirectory>src</sourceDirectory>
<includePaths>
<includePath>include</includePath>
<includePath>src</includePath>
</includePaths>
<defines>
<define>PROJECT_VERSION=${project.version}</define>
<define>PROJECT_NAME=${project.name}</define>
<define>HDF_PROJECT_NAME=HDF5</define>
</defines>
</cpp>
<specificConfigurations>
<specificConfiguration>
<id>NexusCPP linux</id>
<activation>
<os>Linux</os>
</activation>
<cpp>
<defines>
<define>HDF_PROJECT_VERSION=1.8.18</define>
</defines>
</cpp>
</specificConfiguration>
<specificConfiguration>
<id>NexusCPP windows</id>
<activation>
<os>Windows</os>
</activation>
<cpp>
<defines>
<define>HDF_PROJECT_VERSION=1.8.18</define>
<define>_HDF5USEDLL_</define>
<define>WITH_HDF5</define>
<define>H5_BUILT_AS_DYNAMIC_LIB</define>
</defines>
</cpp>
</specificConfiguration>
<specificConfiguration>
<id>NexusCPP windows shared</id>
<activation>
<os>Windows</os>
<libraryType>shared</libraryType>
</activation>
<cpp>
<defines>
<define>HDF_PROJECT_VERSION=1.8.18</define>
<define>_HDF5USEDLL_</define>
<define>WITH_HDF5</define>
<define>H5_BUILT_AS_DYNAMIC_LIB</define>
<define>NEXUSCPP_DLL</define>
<define>NEXUSCPP_BUILD</define>
</defines>
</cpp>
</specificConfiguration>
</specificConfigurations>
</configuration>
</plugin>
</plugins>
</build>
</project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment