From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-eopbgr700089.outbound.protection.outlook.com ([40.107.70.89]:61101 "EHLO NAM04-SN1-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1728044AbeJFBd1 (ORCPT ); Fri, 5 Oct 2018 21:33:27 -0400 From: Yordan Karadzhov To: "rostedt@goodmis.org" CC: "linux-trace-devel@vger.kernel.org" , "Yordan Karadzhov (VMware)" Subject: [PATCH v3 4/5] kernel-shark-qt: Rename the Cmake-generated header file. Date: Fri, 5 Oct 2018 18:33:29 +0000 Message-ID: <20181005183241.27026-5-ykaradzhov@vmware.com> References: <20181005183241.27026-1-ykaradzhov@vmware.com> In-Reply-To: <20181005183241.27026-1-ykaradzhov@vmware.com> Content-Language: en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Sender: linux-trace-devel-owner@vger.kernel.org List-ID: From: "Yordan Karadzhov (VMware)" The name of the Cmake-generated header file is changed for "KsDeff.h" to "KsCmakeDef.hpp" in order to make it more explanatory. With the following patches the file will start contain C++ declarations. Signed-off-by: Yordan Karadzhov (VMware) --- kernel-shark-qt/build/cmake_clean.sh | 2 +- kernel-shark-qt/build/deff.h.cmake | 2 +- kernel-shark-qt/src/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel-shark-qt/build/cmake_clean.sh b/kernel-shark-qt/build/c= make_clean.sh index acdbb43..4f984db 100755 --- a/kernel-shark-qt/build/cmake_clean.sh +++ b/kernel-shark-qt/build/cmake_clean.sh @@ -6,6 +6,6 @@ rm -rf CMakeFiles/ rm -rf src/ rm -rf examples/ rm -f ../lib/* -rm -f ../src/KsDeff.h +rm -f ../src/KsCmakeDef.hpp rm -f CMakeDoxyfile.in rm -f CMakeDoxygenDefaults.cmake diff --git a/kernel-shark-qt/build/deff.h.cmake b/kernel-shark-qt/build/def= f.h.cmake index 111fcdd..44ea08b 100644 --- a/kernel-shark-qt/build/deff.h.cmake +++ b/kernel-shark-qt/build/deff.h.cmake @@ -1,5 +1,5 @@ /** - * \file KsDeff.h + * \file KsCmakeDef.hpp * \brief This File is generated by CMAKE */ =20 diff --git a/kernel-shark-qt/src/CMakeLists.txt b/kernel-shark-qt/src/CMake= Lists.txt index 3365413..305cea7 100644 --- a/kernel-shark-qt/src/CMakeLists.txt +++ b/kernel-shark-qt/src/CMakeLists.txt @@ -31,4 +31,4 @@ endif (OPENGL_FOUND AND GLUT_FOUND) add_subdirectory(plugins) =20 configure_file( ${KS_DIR}/build/deff.h.cmake - ${KS_DIR}/src/KsDeff.h) + ${KS_DIR}/src/KsCmakeDef.hpp) --=20 2.17.1