You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rm...@apache.org on 2021/08/24 23:26:07 UTC

[logging-log4cxx] branch master updated: CMAKE in VS 2019 16.11.1 warns about missing file extensions for XML-related tests: (#69)

This is an automated email from the ASF dual-hosted git repository.

rmiddleton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git


The following commit(s) were added to refs/heads/master by this push:
     new 5cf7c9a  CMAKE in VS 2019 16.11.1 warns about missing file extensions for XML-related tests: (#69)
5cf7c9a is described below

commit 5cf7c9a5b3d4f02c45ef5b12707b6c5431a557a0
Author: Thorsten Schöning <62...@users.noreply.github.com>
AuthorDate: Wed Aug 25 01:25:59 2021 +0200

    CMAKE in VS 2019 16.11.1 warns about missing file extensions for XML-related tests: (#69)
---
 src/test/cpp/xml/CMakeLists.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/test/cpp/xml/CMakeLists.txt b/src/test/cpp/xml/CMakeLists.txt
index 138c489..cd54de6 100644
--- a/src/test/cpp/xml/CMakeLists.txt
+++ b/src/test/cpp/xml/CMakeLists.txt
@@ -1,7 +1,7 @@
 add_executable(xmltests
-    domtestcase
-    xmllayouttest
-    xmllayouttestcase
+    domtestcase.cpp
+    xmllayouttest.cpp
+    xmllayouttestcase.cpp
 )
 
 target_link_libraries(xmltests PRIVATE ${APR_UTIL_LIBRARIES} EXPAT::EXPAT)