Skip to content

Commit

Permalink
Updating version and so versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukacu committed May 9, 2017
1 parent 04ddde3 commit dd8c6f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ SET(TRAX_SOURCE src/trax.c src/region.c src/strmap.c src/message.c src/base64.c
ADD_LIBRARY(trax SHARED ${TRAX_SOURCE})
ADD_LIBRARY(traxstatic STATIC ${TRAX_SOURCE})

SET_TARGET_PROPERTIES(trax PROPERTIES VERSION ${BUILD_VERSION} SOVERSION 0)
SET_TARGET_PROPERTIES(trax PROPERTIES VERSION ${BUILD_VERSION} SOVERSION 1)
TARGET_COMPILE_OPTIONS(traxstatic PUBLIC -DTRAX_STATIC_DEFINE)

INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/src)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.1.1
2 changes: 1 addition & 1 deletion support/client/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ADD_LIBRARY(trax_client_static STATIC client.cpp process.cpp threads.cpp timer.c
TARGET_COMPILE_OPTIONS(trax_client_static PUBLIC -DTRAX_STATIC_DEFINE)
TARGET_LINK_LIBRARIES(trax_client trax)
INSTALL(FILES "include/trax/client.hpp" DESTINATION include/trax)
SET_TARGET_PROPERTIES(trax_client PROPERTIES VERSION 0.0.0 SOVERSION 0)
SET_TARGET_PROPERTIES(trax_client PROPERTIES VERSION ${BUILD_VERSION} SOVERSION 0)
SET_TARGET_PROPERTIES(trax_client_static PROPERTIES POSITION_INDEPENDENT_CODE TRUE)

ADD_EXECUTABLE(traxclient cli.cpp getopt.c)
Expand Down
2 changes: 1 addition & 1 deletion support/opencv/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ADD_LIBRARY(trax_opencv SHARED opencv.cpp)
TARGET_LINK_LIBRARIES(trax_opencv trax ${OpenCV_LIBS})
INSTALL(FILES "include/trax/opencv.hpp" DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/trax)

SET_TARGET_PROPERTIES(trax_opencv PROPERTIES VERSION 0.0.0 SOVERSION 0)
SET_TARGET_PROPERTIES(trax_opencv PROPERTIES VERSION ${BUILD_VERSION} SOVERSION 1)

IF (WIN32 OR WIN64)
INSTALL(TARGETS trax_opencv EXPORT opencv
Expand Down

0 comments on commit dd8c6f6

Please sign in to comment.