Compare commits
3 commits
7c1256567b
...
d545e22815
Author | SHA1 | Date | |
---|---|---|---|
d545e22815 | |||
5c296632b0 | |||
c57320598b |
3 changed files with 5 additions and 4 deletions
|
@ -1,7 +1,8 @@
|
||||||
cmake_minimum_required(VERSION 3.7)
|
cmake_minimum_required(VERSION 3.7)
|
||||||
project(UDPC)
|
project(UDPC)
|
||||||
|
|
||||||
set(UDPC_VERSION 1.0)
|
set(UDPC_VERSION 1.1)
|
||||||
|
set(UDPC_SOVERSION 1)
|
||||||
|
|
||||||
set(UDPC_SOURCES
|
set(UDPC_SOURCES
|
||||||
src/UDPConnection.cpp
|
src/UDPConnection.cpp
|
||||||
|
@ -22,7 +23,7 @@ endif()
|
||||||
|
|
||||||
add_library(UDPC ${UDPC_SOURCES})
|
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_compile_features(UDPC PUBLIC cxx_std_11)
|
||||||
target_link_libraries(UDPC PUBLIC pthread)
|
target_link_libraries(UDPC PUBLIC pthread)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[requires]
|
[requires]
|
||||||
udpc/1.0
|
udpc/1.1
|
||||||
|
|
||||||
[generators]
|
[generators]
|
||||||
CMakeDeps
|
CMakeDeps
|
||||||
|
|
|
@ -5,7 +5,7 @@ import os
|
||||||
|
|
||||||
class udpcRecipe(ConanFile):
|
class udpcRecipe(ConanFile):
|
||||||
name = "udpc"
|
name = "udpc"
|
||||||
version = "1.0"
|
version = "1.1"
|
||||||
package_type = "library"
|
package_type = "library"
|
||||||
|
|
||||||
# Optional metadata
|
# Optional metadata
|
||||||
|
|
Loading…
Reference in a new issue