Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openfa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
imcce_openfa
openfa
Commits
f5894f59
Commit
f5894f59
authored
1 year ago
by
gastineau
Browse files
Options
Downloads
Patches
Plain Diff
fix the ABI version for macos 12 and windows
parent
314ba96d
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+10
-5
10 additions, 5 deletions
CMakeLists.txt
with
10 additions
and
5 deletions
CMakeLists.txt
+
10
−
5
View file @
f5894f59
...
...
@@ -5,13 +5,18 @@
#
# ####################################################################
cmake_minimum_required
(
VERSION 3.0.0...3.28.0
)
project
(
openfa VERSION 20231011.0.3 LANGUAGES C
)
cmake_minimum_required
(
VERSION 3.0.0...3.29.3
)
# when updating the version of the project,
# if it's a new release of SOFA, increment OPENFA_SOVERSION_MINOR
# update the README.md
project
(
openfa VERSION 231011.0.3 LANGUAGES C
)
# ABI version number
# follow rules : http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
set
(
OPENFA_SOVERSION_COMPAT 1
)
set
(
OPENFA_SOVERSION_FULL
${
OPENFA_SOVERSION_COMPAT
}
.
${
PROJECT_VERSION_MAJOR
}
.
${
PROJECT_VERSION_MINOR
}
.
${
PROJECT_VERSION_PATCH
}
)
set
(
OPENFA_SOVERSION_COMPAT 2
)
set
(
OPENFA_SOVERSION_MAJOR 0
)
set
(
OPENFA_SOVERSION_FULL
${
OPENFA_SOVERSION_COMPAT
}
.
${
OPENFA_SOVERSION_MAJOR
}
.
${
PROJECT_VERSION_MINOR
}
.
${
PROJECT_VERSION_PATCH
}
)
set
(
OPENFA_CONTACT_EMAIL
"Mickael.Gastineau@obspm.fr"
)
set
(
OPENFA_MAINTAINER_NAME
"Mickaël Gastineau"
)
...
...
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