Skip to content

Commit

Permalink
Fix order of ${IMATH_SOVERSION}.${IMATH_SOREVISION}.${IMATH_SOAGE} (#142
Browse files Browse the repository at this point in the history
)

Revision comes before age.

Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm committed May 15, 2021
1 parent 71a50e2 commit a4bde1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ set(IMATH_VERSION_EXTRA "" CACHE STRING "Extra version tag string for Imath buil

# See https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
set(IMATH_SOVERSION 28)
set(IMATH_SOREVISION 0)
set(IMATH_SOAGE 0)
set(IMATH_SOREVISION 1)
set(IMATH_LIB_VERSION "${IMATH_SOVERSION}.${IMATH_SOAGE}.${IMATH_SOREVISION}")
set(IMATH_LIB_VERSION "${IMATH_SOVERSION}.${IMATH_SOREVISION}.${IMATH_SOAGE}")

set(IMATH_VERSION_MAJOR ${CMAKE_PROJECT_VERSION_MAJOR})
set(IMATH_VERSION_MINOR ${CMAKE_PROJECT_VERSION_MINOR})
Expand Down

0 comments on commit a4bde1b

Please sign in to comment.