forked from 42ity/fty-srr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.xml
87 lines (72 loc) · 3.86 KB
/
project.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
<project
name = "fty-srr"
description = "Save, restore and reset agent for 42ITy ecosystem"
script = "zproject.gsl"
email = "EatonIPCOpenSource@eaton.com"
url = "https://42ity.org"
check_license_years = "1"
license = "GPL-2.0+"
repository = "https://github.com/42ity/fty-srr"
>
<target name = "debian" />
<target name = "redhat" />
<target name = "travis" >
<option name = "recursive_dependencies" value = "true"/>
<!-- option name = "clangformat_implem" value = "autotools" / -->
<option name = "use_cmake" value = "0" />
<!-- option name = "dist" value = "trusty" / -->
<option name = "shadow_gcc" value = "2" />
<!-- option name = "clangformat_require_good" value = "1" / -->
<option name = "clangformat_allow_failures" value = "1" />
<option name = "use_pkg_deps_prereqs_source" value = "0" />
<option name = "require_gitignore" value = "1" />
</target>
<target name = "jenkins" >
<option name = "agent_label" value = "devel-image && x86_64" />
<option name = "triggers_pollSCM" value = "H/2 * * * *" />
<option name = "test_cppcheck" value = "1" />
<option name = "build_docs" value = "1" />
<option name = "dist_docs" value = "1" />
<!-- Try to avoid avalanche rebuilds of same code on our CI -->
<option name = "use_earlymilestone" value = "1" />
<option name = "use_deploymilestone" value = "1" />
<option name = "use_build_nonconcurrent" value = "1" />
<option name = "use_checkout_explicit" value = "1" />
</target>
<!-- Here we enable c++ -->
<classfilename use-cxx = "true" source-extension = "cc" header-extension = "h"
pretty-print = "no" keep-tree = "true" />
<include filename = "license.xml" />
<version major = "1" minor = "0" patch = "0" />
<abi current = "0" revision = "0" age = "0" />
<!-- fty-common-logging -->
<use project = "fty-common-logging" libname = "libfty_common_logging" header = "fty_log.h"
repository = "https://github.com/42ity/fty-common-logging.git" />
<!-- use cxxtools -->
<use project = "cxxtools" test = "cxxtools::Utf8Codec::Utf8Codec" header = "cxxtools/allocator.h"
repository = "https://github.com/42ity/cxxtools.git" />
<!-- fty-common -->
<use project = "fty-common" libname = "libfty_common" header = "fty_common.h"
repository = "https://github.com/42ity/fty-common.git" />
<!-- fty-commom-mlm -->
<use project = "fty-common-mlm" libname = "libfty_common_mlm" header = "fty_common_mlm.h"
repository = "https://github.com/42ity/fty-common-mlm.git" />
<!-- use fty-common-messagebus -->
<use project = "fty-common-messagebus" libname = "libfty_common_messagebus" header = "fty_common_messagebus.h"
repository = "https://github.com/42ity/fty-common-messagebus.git" />
<!-- use fty-common-dto -->
<use project = "fty-common-dto" libname = "libfty_common_dto" header = "fty_common_dto.h"
repository = "https://github.com/42ity/fty-common-dto.git" />
<!-- use protobuf -->
<use project = "protobuf" header = "google/protobuf/stubs/common.h"
repository = "https://github.com/42ity/protobuf.git"/>
<!-- use fty-lib-certificate -->
<use project = "fty-lib-certificate" libname = "libfty_lib_certificate" header = "fty-lib-certificate.h"
repository = "https://github.com/42ity/fty-lib-certificate.git"/>
<!-- Project -->
<header name ="fty_srr_exception">Fty srr exceptions</header>
<class name = "fty_srr_manager" private = "1" selftest = "0">Fty srr manager</class>
<class name = "fty_srr_worker" private = "1" selftest = "0">Fty srr worker</class>
<main name = "fty-srr" service = "1">Binary</main>
<main name = "fty-srr-cmd" selftest = "0">Binary</main>
</project>