Skip to content

Commit 2d39eae

Browse files
mrdox has a version to print
Closes #24.
1 parent 975a6a9 commit 2d39eae

File tree

3 files changed

+45
-2
lines changed

3 files changed

+45
-2
lines changed

CMakeLists.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ unset(CMAKE_FOLDER)
8989
#
9090
#-------------------------------------------------
9191

92+
configure_file(source/api/Version.hpp.in ${PROJECT_BINARY_DIR}/include/mrdox/Version.hpp)
93+
9294
file(GLOB_RECURSE LIB_INCLUDES CONFIGURE_DEPENDS include/*.hpp)
9395
file(GLOB_RECURSE LIB_SOURCES CONFIGURE_DEPENDS
9496
source/api/*.h
@@ -105,6 +107,7 @@ target_include_directories(mrdox-api
105107
"$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>"
106108
PRIVATE
107109
"${PROJECT_SOURCE_DIR}/source/"
110+
${PROJECT_BINARY_DIR}/include
108111
)
109112
target_compile_definitions(
110113
mrdox-api
@@ -186,7 +189,9 @@ add_executable(mrdox ${TOOL_SOURCES})
186189
target_link_libraries(mrdox PRIVATE mrdox-api)
187190
target_include_directories(mrdox
188191
PRIVATE
189-
${PROJECT_SOURCE_DIR}/source/)
192+
${PROJECT_SOURCE_DIR}/source/
193+
${PROJECT_BINARY_DIR}/include/
194+
)
190195

191196
source_group(TREE ${PROJECT_SOURCE_DIR} PREFIX "" FILES CMakeLists.txt)
192197
source_group(TREE ${PROJECT_SOURCE_DIR}/source/tool PREFIX "source" FILES ${TOOL_SOURCES})

source/api/Version.hpp.in

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
//
2+
// This is a derivative work. originally part of the LLVM Project.
3+
// Licensed under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
// Copyright (c) 2023 Klemens D. Morgenstern
8+
//
9+
// Official repository: https://github.com/cppalliance/mrdox
10+
//
11+
#ifndef MRDOX_VERSION_HPP_IN_H
12+
#define MRDOX_VERSION_HPP_IN_H
13+
14+
#include <llvm/Support/raw_ostream.h>
15+
16+
namespace clang {
17+
namespace mrdox {
18+
19+
constexpr std::string_view project_version = "${PROJECT_VERSION}";
20+
constexpr std::string_view project_name = "${PROJECT_NAME}";
21+
constexpr std::string_view project_description = "${PROJECT_DESCRIPTION}";
22+
23+
inline void print_version(llvm::raw_ostream & os)
24+
{
25+
os << project_name
26+
<< "\n " << project_description
27+
<< "\n version: " << project_version
28+
<< "\n built with LLVM " << LLVM_VERSION_STRING;
29+
}
30+
31+
}
32+
}
33+
34+
#endif //MRDOX_VERSION_HPP_IN_H

source/tool/ToolMain.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
//
2121

2222
#include "api/ConfigImpl.hpp"
23-
#include <mrdox/Corpus.hpp>
2423
#include "api/Support/Debug.hpp"
24+
#include <mrdox/Corpus.hpp>
2525
#include <mrdox/Generators.hpp>
2626
#include <mrdox/Reporter.hpp>
27+
#include <mrdox/Version.hpp>
2728
#include <clang/Tooling/AllTUsExecution.h>
2829
#include <clang/Tooling/CommonOptionsParser.h>
2930
#include <llvm/Support/CommandLine.h>
@@ -97,6 +98,9 @@ toolMain(
9798
{
9899
auto& generators = getGenerators();
99100

101+
llvm::cl::SetVersionPrinter(
102+
&clang::mrdox::print_version);
103+
100104
// parse command line options
101105
auto optionsResult = tooling::CommonOptionsParser::create(
102106
argc, argv, ToolCategory, llvm::cl::OneOrMore, Overview);

0 commit comments

Comments
 (0)