From commits-return-22343-archive-asf-public=cust-asf.ponee.io@logging.apache.org Thu Jun 25 07:27:39 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 8FA7C18067A for ; Thu, 25 Jun 2020 09:27:38 +0200 (CEST) Received: (qmail 33761 invoked by uid 500); 25 Jun 2020 07:27:38 -0000 Mailing-List: contact commits-help@logging.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@logging.apache.org Delivered-To: mailing list commits@logging.apache.org Received: (qmail 33668 invoked by uid 99); 25 Jun 2020 07:27:37 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jun 2020 07:27:37 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 477EB890B9; Thu, 25 Jun 2020 07:27:37 +0000 (UTC) Date: Thu, 25 Jun 2020 07:27:39 +0000 To: "commits@logging.apache.org" Subject: [logging-log4cxx] 03/03: LOGCXX-510: Quotes for version numbers in "set_target_properties". MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: tschoening@apache.org In-Reply-To: <159307005684.15721.14828888705430982364@gitbox.apache.org> References: <159307005684.15721.14828888705430982364@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: logging-log4cxx X-Git-Refname: refs/heads/logcxx_510_cmake_vs2019_compat X-Git-Reftype: branch X-Git-Rev: 55cafe3e33cbfbbc46d2294b75e9f8405b56769d X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20200625072737.477EB890B9@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. tschoening pushed a commit to branch logcxx_510_cmake_vs2019_compat in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git commit 55cafe3e33cbfbbc46d2294b75e9f8405b56769d Author: Thorsten Schöning AuthorDate: Thu Jun 25 09:24:09 2020 +0200 LOGCXX-510: Quotes for version numbers in "set_target_properties". --- src/main/cpp/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/cpp/CMakeLists.txt b/src/main/cpp/CMakeLists.txt index 8f7d609..1d05b68 100644 --- a/src/main/cpp/CMakeLists.txt +++ b/src/main/cpp/CMakeLists.txt @@ -165,6 +165,6 @@ target_sources(log4cxx zipcompressaction.cpp ) set_target_properties(log4cxx PROPERTIES - VERSION ${log4cxx_VERSION_MAJOR}.${log4cxx_VERSION_MINOR}.${log4cxx_VERSION_PATCH} - SOVERSION ${log4cxx_VERSION_MAJOR} + VERSION "${log4cxx_VERSION_MAJOR}.${log4cxx_VERSION_MINOR}.${log4cxx_VERSION_PATCH}" + SOVERSION "${log4cxx_VERSION_MAJOR}" )