1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-22 19:54:57 +08:00

remove PROJ_SOVERSION variable

this is only used once and it makes it easier to read or grep for

Signed-off-by: Alex Moriarty <alex.moriarty@picknik.ai>
This commit is contained in:
Alex Moriarty 2023-06-16 20:39:22 -03:00
parent 7b7f62b606
commit 2a76e1a34b

View File

@ -1,7 +1,6 @@
cmake_minimum_required(VERSION 3.16)
# General setup
set(PROJ_SOVERSION 1)
project(serial
VERSION 1.2.1
DESCRIPTION "Cross-platform, Serial Port library written in C++"
@ -45,7 +44,7 @@ endif()
add_library(${PROJECT_NAME} ${serial_SRCS})
set_target_properties(${PROJECT_NAME} PROPERTIES
VERSION ${PROJECT_VERSION}
SOVERSION ${PROJ_SOVERSION}
SOVERSION 1
PUBLIC_HEADER "${serial_HEADERS}"
)