Compare commits

..

3 commits

Author SHA1 Message Date
d545e22815 Update version to udpc/1.1
All checks were successful
Run UnitTests / build-and-run-tests (push) Successful in 2m10s
2024-07-13 13:46:08 +09:00
5c296632b0 Merge branch 'master' into conan 2024-07-13 13:44:55 +09:00
c57320598b Update version to 1.1
All checks were successful
Publish doxygen documentation to seodisparate.com / doxygen-gen-and-publish (push) Successful in 1s
Run UnitTests / build-and-run-tests (push) Successful in 2m38s
Specify "SOVERSION" for shared lib so that libUDPC.so.1 is the default
instead of libUDPC.so.1.0 .
2024-07-13 13:44:00 +09:00
3 changed files with 5 additions and 4 deletions

View file

@ -1,7 +1,8 @@
cmake_minimum_required(VERSION 3.7)
project(UDPC)
set(UDPC_VERSION 1.0)
set(UDPC_VERSION 1.1)
set(UDPC_SOVERSION 1)
set(UDPC_SOURCES
src/UDPConnection.cpp
@ -22,7 +23,7 @@ endif()
add_library(UDPC ${UDPC_SOURCES})
set_target_properties(UDPC PROPERTIES VERSION ${UDPC_VERSION})
set_target_properties(UDPC PROPERTIES VERSION ${UDPC_VERSION} SOVERSION ${UDPC_SOVERSION})
target_compile_features(UDPC PUBLIC cxx_std_11)
target_link_libraries(UDPC PUBLIC pthread)

View file

@ -1,5 +1,5 @@
[requires]
udpc/1.0
udpc/1.1
[generators]
CMakeDeps

View file

@ -5,7 +5,7 @@ import os
class udpcRecipe(ConanFile):
name = "udpc"
version = "1.0"
version = "1.1"
package_type = "library"
# Optional metadata