Skip to content

Commit 66cc54b

Browse files
committed
docs: fixed broken license link
1 parent da1c9c6 commit 66cc54b

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ endif ()
170170
################################################################################
171171
if (CPP_REFLECT_DEV_MODE AND CPP_REFLECT_BUILD_DOCS)
172172
target_configure_doxygen(cpp_reflect
173-
DOXYFILE ${CPP_REFLECT_DIR}/Doxyfile
173+
DOXYFILE ${CPP_REFLECT_DIR}/docs/Doxyfile
174174
BASE_DIR ${CPP_REFLECT_DIR}
175175
)
176176
endif ()

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
<a href="#license">License</a>
1818
</p>
1919

20+
[TOC]
21+
2022
# Overview
2123

2224
{TODO}
@@ -36,13 +38,13 @@ Since this is a module library, the recommended way to integrate it into your pr
3638
3739
include(FetchContent)
3840
39-
FetchContent_Declare(cyd_ui
40-
GIT_REPOSITORY https://github.com/castle055/cyd-ui.git
41-
GIT_TAG main # for the latest version, or a version tag such as 'v0.14.0'
41+
FetchContent_Declare(cpp_reflect
42+
GIT_REPOSITORY https://github.com/castle055/cpp-reflect.git
43+
GIT_TAG main # for the latest version, or a version tag such as 'v0.2.0'
4244
FIND_PACKAGE_ARGS
4345
)
44-
FetchContent_MakeAvailable(cyd_ui)
45-
include_directories(${cyd_ui_SOURCE_DIR}/include)
46+
FetchContent_MakeAvailable(cpp_reflect)
47+
include_directories(${cpp_reflect_SOURCE_DIR}/include)
4648
```
4749

4850
# Usage
@@ -51,7 +53,7 @@ include_directories(${cyd_ui_SOURCE_DIR}/include)
5153

5254
# License
5355

54-
GPL 3.0 &nbsp;&middot;&nbsp; [LICENSE.MD](LICENSE.md)
56+
GPL 3.0 &nbsp;&middot;&nbsp; [LICENSE.MD](https://castle055.github.io/cpp-reflect/license.html)
5557

5658
---
5759

docs/Doxyfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -945,8 +945,8 @@ WARN_LOGFILE =
945945
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
946946
# Note: If this tag is empty the current directory is searched.
947947

948-
INPUT = ./README.md \
949-
./LICENSE.md \
948+
INPUT = ./LICENSE.md \
949+
./README.md \
950950
./include \
951951
./docs/pages \
952952

0 commit comments

Comments
 (0)