Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coeurl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
coeurl
Commits
fb014e88
Verified
Commit
fb014e88
authored
2 years ago
by
Nicolas Werner
Browse files
Options
Downloads
Patches
Plain Diff
Switch soname to major.minor, dropping the patch version
parent
5393e25d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#3398
failed
2 years ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
meson.build
+5
-1
5 additions, 1 deletion
meson.build
with
6 additions
and
1 deletion
CHANGELOG.md
+
1
−
0
View file @
fb014e88
...
...
@@ -6,6 +6,7 @@ CHANGELOG
-
Limit concurrent connections to 64 and per host to 8 by default. You can
change that using 2 new functions.
-
Use major.minor as the soname.
[0.2.0] - 2022-03-06
--------------------
...
...
This diff is collapsed.
Click to expand it.
meson.build
+
5
−
1
View file @
fb014e88
...
...
@@ -94,11 +94,15 @@ if target_machine.system() == 'windows'
]
endif
version_parts
=
meson
.
project_version
().
split
(
'.'
)
soversion
=
version_parts
.
get
(
0
)
+
'.'
+
version_parts
.
get
(
1
)
lib
=
library
(
'coeurl'
,
[
'lib/client.cpp'
,
'lib/request.cpp'
,
'lib/errors.cpp'
],
include_directories
:
include
,
cpp_args
:
defines
,
dependencies
:
deps
,
version
:
meson
.
project_version
(),
#version: meson.project_version(),
soversion
:
soversion
,
install
:
true
)
install_headers
(
'include/coeurl/headers.hpp'
,
'include/coeurl/client.hpp'
,
'include/coeurl/request.hpp'
,
'include/coeurl/errors.hpp'
,
subdir
:
'coeurl'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment