Skip to content

Commit 6ad7378

Browse files
committed
resolved comments
1 parent dfb6255 commit 6ad7378

6 files changed

Lines changed: 8 additions & 190 deletions

File tree

Makefile

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,17 @@
11
# Default to 'dev' if TAGS is not specified on the command line
22
TAGS ?= dev
33

4-
.PHONY: docs serve-docs clean-docs clean doxy clean-doxy
4+
.PHONY: docs serve-docs clean-docs clean
55

66
# Example usage: `make docs TAGS="v2.0.0 latest --update-aliases"`
77
docs: clean-docs
8-
@echo "==> Deploying MkDocs documentation locally via mike (Tags: $(TAGS))..."
9-
uv run mike deploy $(TAGS)
10-
@echo "==> Documentation deployed to local gh-pages branch."
11-
12-
serve-docs: docs
13-
@echo "==> Serving versioned MkDocs documentation locally via mike..."
14-
uv run mike serve
15-
16-
docs-concepts: clean-docs
178
@echo "==> Deploying MkDocs documentation locally via mike (Tags: $(TAGS))..."
189
doxygen Doxyfile
19-
uv run python scripts/gen_concept_docs.py --config docs/config/concepts.json --xml documentation/xml --out docs/cpp-gl
10+
uv run python docs/scripts/gen_concept_docs.py --config docs/config/concepts.json --xml documentation/xml --out docs/cpp-gl
2011
uv run mike deploy $(TAGS)
2112
@echo "==> Documentation deployed to local gh-pages branch."
2213

23-
serve-docs-concepts: docs-concepts
14+
serve-docs: docs
2415
@echo "==> Serving versioned MkDocs documentation locally via mike..."
2516
uv run mike serve
2617

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<br />
88

9-
<div align="center" markdown="1">
9+
<div align="center">
1010

1111
[![G++](https://github.com/SpectraL519/cpp-gl/actions/workflows/gpp.yaml/badge.svg)](https://github.com/SpectraL519/cpp-gl/actions/workflows/gpp.yaml)
1212
[![Clang++](https://github.com/SpectraL519/cpp-gl/actions/workflows/clang.yaml/badge.svg)](https://github.com/SpectraL519/cpp-gl/actions/workflows/clang.yaml)

include/gl/conversion.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// This file is part of the CPP-GL project (https://github.com/SpectraL519/cpp-gl).
33
// Licensed under the MIT License. See the LICENSE file in the project root for full license information.
44

5+
/// @file gl/conversion.hpp
6+
/// @brief Defines the graph representation model conversion utility.
7+
58
#pragma once
69

710
#include "gl/decl/impl_tags.hpp"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cpp-gl"
3-
version = "0.1.0"
3+
version = "2.0.0"
44
description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.10"

scripts/postprocess_doxyhtml.py

Lines changed: 0 additions & 176 deletions
This file was deleted.

0 commit comments

Comments
 (0)