Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/IlmCtl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ target_link_libraries (IlmCtl

set_target_properties(IlmCtl
PROPERTIES
VERSION ${CTL_VERSION}
SOVERSION ${CTL_VERSION}
VERSION "${CTL_VERSION}"
SOVERSION "${CTL_VERSION_MAJOR}.${CTL_VERSION_MINOR}"
)

install( FILES
Expand Down
4 changes: 2 additions & 2 deletions lib/IlmCtlMath/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ target_link_libraries (IlmCtlMath

set_target_properties(IlmCtlMath
PROPERTIES
VERSION ${CTL_VERSION}
SOVERSION ${CTL_VERSION}
VERSION "${CTL_VERSION}"
SOVERSION "${CTL_VERSION_MAJOR}.${CTL_VERSION_MINOR}"
)

install(FILES
Expand Down
4 changes: 2 additions & 2 deletions lib/IlmCtlSimd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ target_link_libraries(IlmCtlSimd

set_target_properties(IlmCtlSimd
PROPERTIES
VERSION ${CTL_VERSION}
SOVERSION ${CTL_VERSION}
VERSION "${CTL_VERSION}"
SOVERSION "${CTL_VERSION_MAJOR}.${CTL_VERSION_MINOR}"
)

install(FILES CtlSimdInterpreter.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/CTL)
Expand Down
6 changes: 3 additions & 3 deletions lib/IlmImfCtl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ target_link_libraries (IlmImfCtl
)

set_target_properties(IlmImfCtl
PROPERTIES
VERSION ${CTL_VERSION}
SOVERSION ${CTL_VERSION}
PROPERTIES
VERSION "${CTL_VERSION}"
SOVERSION "${CTL_VERSION_MAJOR}.${CTL_VERSION_MINOR}"
)

install(FILES
Expand Down
4 changes: 2 additions & 2 deletions lib/dpx/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ target_link_libraries(ctldpx

set_target_properties(ctldpx
PROPERTIES
VERSION ${CTL_VERSION}
SOVERSION ${CTL_VERSION}
VERSION "${CTL_VERSION}"
SOVERSION "${CTL_VERSION_MAJOR}.${CTL_VERSION_MINOR}"
)
Loading