From 4e0c8e92f236ebfce2b345b686f8b45fc26ba8b7 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Wed, 27 Sep 2023 19:41:26 -0400 Subject: [PATCH] refcnt: use xo_add_shared_library() from xo-cmake --- src/CMakeLists.txt | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0a60fbe..9d006fd 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,14 +1,5 @@ set(SELF_LIBRARY_NAME refcnt) set(SELF_SOURCE_FILES Refcounted.cpp Displayable.cpp) -add_library(${SELF_LIBRARY_NAME} SHARED ${SELF_SOURCE_FILES}) - -set_target_properties(${SELF_LIBRARY_NAME} - PROPERTIES - VERSION ${PROJECT_VERSION} - SOVERSION 1) +xo_add_shared_library(${SELF_LIBRARY_NAME} ${PROJECT_VERSION} 1 ${SELF_SOURCE_FILES}) xo_internal_dependency(${SELF_LIBRARY_NAME} indentlog) - -xo_include_options2(${SELF_LIBRARY_NAME}) -xo_compile_options(${SELF_LIBRARY_NAME}) -xo_install_library2(${SELF_LIBRARY_NAME})