Compare commits
No commits in common. "d545e228155558dc0f87c564f73f259cc11b7209" and "7c1256567bb00e3eaea6d6b790c36372e1a698bb" have entirely different histories.
d545e22815
...
7c1256567b
3 changed files with 4 additions and 5 deletions
|
@ -1,8 +1,7 @@
|
|||
cmake_minimum_required(VERSION 3.7)
|
||||
project(UDPC)
|
||||
|
||||
set(UDPC_VERSION 1.1)
|
||||
set(UDPC_SOVERSION 1)
|
||||
set(UDPC_VERSION 1.0)
|
||||
|
||||
set(UDPC_SOURCES
|
||||
src/UDPConnection.cpp
|
||||
|
@ -23,7 +22,7 @@ endif()
|
|||
|
||||
add_library(UDPC ${UDPC_SOURCES})
|
||||
|
||||
set_target_properties(UDPC PROPERTIES VERSION ${UDPC_VERSION} SOVERSION ${UDPC_SOVERSION})
|
||||
set_target_properties(UDPC PROPERTIES VERSION ${UDPC_VERSION})
|
||||
|
||||
target_compile_features(UDPC PUBLIC cxx_std_11)
|
||||
target_link_libraries(UDPC PUBLIC pthread)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[requires]
|
||||
udpc/1.1
|
||||
udpc/1.0
|
||||
|
||||
[generators]
|
||||
CMakeDeps
|
||||
|
|
|
@ -5,7 +5,7 @@ import os
|
|||
|
||||
class udpcRecipe(ConanFile):
|
||||
name = "udpc"
|
||||
version = "1.1"
|
||||
version = "1.0"
|
||||
package_type = "library"
|
||||
|
||||
# Optional metadata
|
||||
|
|
Loading…
Reference in a new issue