forked from esrf-bliss/Processlib
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpom_64.xml
executable file
·124 lines (116 loc) · 4.76 KB
/
pom_64.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0" encoding="UTF-8"?>
<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>fr.soleil</groupId>
<artifactId>super-pom-C-CPP</artifactId>
<version>21.2.5-64</version>
</parent>
<groupId>fr.soleil.lib</groupId>
<artifactId>LimaProcesslib-amd64-Linux-gcc-shared-${mode}</artifactId>
<version>1.3.10</version>
<packaging>nar</packaging>
<name>LimaProcesslib</name>
<description>Processlib for Lima : binning,roi,flip, ...</description>
<properties>
<!-- path to the 64 bits libs ${libs-64bits} -->
<libs-64bits>/home/informatique/ica/ica/LIB_EL6_64</libs-64bits>
</properties>
<profiles>
<profile>
<id>Lima_linux</id>
<activation>
<os>
<family>Linux</family>
</os>
</activation>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.freehep</groupId>
<artifactId>freehep-nar-plugin</artifactId>
<configuration>
<cpp>
<sourceDirectory>${project.basedir}</sourceDirectory>
</cpp>
<libraries>
<library>
<type>shared</type>
</library>
</libraries>
<specificConfigurations>
<specificConfiguration>
<id>linux platform</id>
<activation>
<os>Linux</os>
</activation>
<cpp>
<includes>
<include>core/src/*.cpp</include>
<include>tasks/src/*.cpp</include>
</includes>
<includePaths>
<includePath>core/include</includePath>
<includePath>tasks/include</includePath>
<!-- <includePath>${libs-64bits}/gsl-1.11/include</includePath> -->
</includePaths>
<defines>
<define>WITHOUT_GSL</define>
</defines>
</cpp>
<!-- <linker>
<libs>
<lib>-->
<!-- gsl (1.11) 64-->
<!-- <name>gsl</name>
<type>shared</type>
<directory>${libs-64bits}/gsl-1.11/lib/</directory>
</lib>
<lib> -->
<!-- gsl (1.11) 64-->
<!-- <name>gslcblas</name>
<type>shared</type>
<directory>${libs-64bits}/gsl-1.11/lib/</directory>
</lib>
</libs>
</linker> -->
</specificConfiguration>
</specificConfigurations>
</configuration>
</plugin>
<plugin>
<groupId>fr.soleil.maven.plugins</groupId>
<artifactId>maven-check-plugin</artifactId>
<configuration>
<enable>false</enable>
</configuration>
</plugin>
</plugins>
</build>
<developers>
<developer>
<id>langlois</id>
<name>langlois</name>
<url>http://controle/</url>
<organization>Synchrotron Soleil</organization>
<organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
<roles>
<role>manager</role>
</roles>
<timezone>1</timezone>
</developer>
<developer>
<id>noureddine</id>
<name>noureddine</name>
<url>http://controle/</url>
<organization>Synchrotron Soleil</organization>
<organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>1</timezone>
</developer>
</developers>
</project>