File tree 2 files changed +7
-20
lines changed
2 files changed +7
-20
lines changed Original file line number Diff line number Diff line change 16
16
cc : ["gcc-10"]
17
17
cxx : ["g++-10"]
18
18
drafts : ["ON"]
19
- libzmq : ["4.3.4 "]
19
+ libzmq : ["4.3.5 "]
20
20
libzmqbuild : ["cmake"]
21
21
include :
22
22
# older libzmq and without draft
@@ -33,15 +33,15 @@ jobs:
33
33
cc : " gcc-11"
34
34
cxx : " g++-11"
35
35
drafts : " OFF"
36
- libzmq : " 4.3.4 "
36
+ libzmq : " 4.3.5 "
37
37
libzmqbuild : " cmake"
38
38
# coverage (gcc version should match gcov version)
39
39
- os : " ubuntu-20.04"
40
40
cppstd : " 17"
41
41
cc : " gcc-9"
42
42
cxx : " g++-9"
43
43
drafts : " ON"
44
- libzmq : " 4.3.4 "
44
+ libzmq : " 4.3.5 "
45
45
libzmqbuild : " cmake"
46
46
coverage : " -DCOVERAGE=ON"
47
47
aptinstall : " lcov"
@@ -51,15 +51,15 @@ jobs:
51
51
cc : " clang-12"
52
52
cxx : " clang++-12"
53
53
drafts : " ON"
54
- libzmq : " 4.3.4 "
54
+ libzmq : " 4.3.5 "
55
55
libzmqbuild : " cmake"
56
56
# macos
57
57
- os : " macos-latest"
58
58
cppstd : " 17"
59
59
cc : " clang"
60
60
cxx : " clang++"
61
61
drafts : " OFF"
62
- libzmq : " 4.3.4 "
62
+ libzmq : " 4.3.5 "
63
63
libzmqbuild : false
64
64
brewinstall : " zeromq"
65
65
# windows
@@ -68,15 +68,15 @@ jobs:
68
68
cc : " msbuild"
69
69
cxx : " msbuild"
70
70
drafts : " ON"
71
- libzmq : " 4.3.4 "
71
+ libzmq : " 4.3.5 "
72
72
libzmqbuild : " cmake"
73
73
platform : " -Ax64"
74
74
- os : " windows-2022"
75
75
cppstd : " 20"
76
76
cc : " msbuild"
77
77
cxx : " msbuild"
78
78
drafts : " ON"
79
- libzmq : " 4.3.4 "
79
+ libzmq : " 4.3.5 "
80
80
libzmqbuild : " cmake"
81
81
platform : " -Ax64"
82
82
@@ -132,7 +132,6 @@ jobs:
132
132
run : |
133
133
cmake -H. -Bbuild ${{ matrix.platform}} ${{ matrix.coverage }} \
134
134
-DCMAKE_BUILD_TYPE=${BUILDTYPE} \
135
- -DENABLE_DRAFTS=${{ matrix.drafts }} \
136
135
-DCMAKE_CXX_STANDARD=${{ matrix.cppstd }}
137
136
cmake --build build --config ${BUILDTYPE} -j ${THREADS}
138
137
echo "CPPZMQ=${PWD}/build" >> ${GITHUB_ENV}
Original file line number Diff line number Diff line change @@ -26,18 +26,6 @@ if (NOT TARGET libzmq AND NOT TARGET libzmq-static)
26
26
endif ()
27
27
endif ()
28
28
29
- if (EXISTS "${CMAKE_SOURCE_DIR} /.git" )
30
- OPTION (ENABLE_DRAFTS "Build and install draft classes and methods" ON )
31
- else ()
32
- OPTION (ENABLE_DRAFTS "Build and install draft classes and methods" OFF )
33
- endif ()
34
- if (ENABLE_DRAFTS)
35
- ADD_DEFINITIONS (-DZMQ_BUILD_DRAFT_API)
36
- set (pkg_config_defines "-DZMQ_BUILD_DRAFT_API=1" )
37
- else (ENABLE_DRAFTS)
38
- set (pkg_config_defines "" )
39
- endif (ENABLE_DRAFTS)
40
-
41
29
message (STATUS "cppzmq v${cppzmq_VERSION} " )
42
30
43
31
set (CPPZMQ_HEADERS
You can’t perform that action at this time.
0 commit comments