diff --git a/.gitignore b/.gitignore index 78f9d8b..d6b3e62 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.DS_Store /develop/.cdb/* /develop/build/* /develop/install/* \ No newline at end of file diff --git a/README.md b/README.md index 9bf11bd..54f47db 100644 --- a/README.md +++ b/README.md @@ -44,17 +44,17 @@ add_subdirectory(external/meta.hpp) target_link_libraries(your_project_target PUBLIC meta.hpp::meta.hpp) ``` -## Examples +## Manuals -- [Class](./manuals/meta_examples/class_example.cpp) -- [Enum](./manuals/meta_examples/enum_example.cpp) -- [Function](./manuals/meta_examples/function_example.cpp) -- [InPlace](./manuals/meta_examples/inplace_example.cpp) -- [Member](./manuals/meta_examples/member_example.cpp) -- [Method](./manuals/meta_examples/method_example.cpp) -- [Scopes](./manuals/meta_examples/scopes_example.cpp) -- [UValue](./manuals/meta_examples/uvalue_example.cpp) -- [Variable](./manuals/meta_examples/variable_example.cpp) +- [Class](develop/manuals/meta_manuals/class_manual.cpp) +- [Enum](develop/manuals/meta_manuals/enum_manual.cpp) +- [Function](develop/manuals/meta_manuals/function_manual.cpp) +- [InPlace](develop/manuals/meta_manuals/inplace_manual.cpp) +- [Member](develop/manuals/meta_manuals/member_manual.cpp) +- [Method](develop/manuals/meta_manuals/method_manual.cpp) +- [Scopes](develop/manuals/meta_manuals/scopes_manual.cpp) +- [UValue](develop/manuals/meta_manuals/uvalue_manual.cpp) +- [Variable](develop/manuals/meta_manuals/variable_manual.cpp) ## Features diff --git a/develop/cmake/SetupTargets.cmake b/develop/cmake/SetupTargets.cmake index f819486..669463f 100644 --- a/develop/cmake/SetupTargets.cmake +++ b/develop/cmake/SetupTargets.cmake @@ -16,6 +16,7 @@ target_compile_options(${PROJECT_NAME}.setup_targets INTERFACE -Wno-exit-time-destructors -Wno-global-constructors -Wno-padded + -Wno-unneeded-internal-declaration -Wno-unneeded-member-function -Wno-weak-vtables >) diff --git a/develop/manuals/meta_examples/class_example.cpp b/develop/manuals/meta_manuals/class_manual.cpp similarity index 100% rename from develop/manuals/meta_examples/class_example.cpp rename to develop/manuals/meta_manuals/class_manual.cpp diff --git a/develop/manuals/meta_examples/enum_example.cpp b/develop/manuals/meta_manuals/enum_manual.cpp similarity index 100% rename from develop/manuals/meta_examples/enum_example.cpp rename to develop/manuals/meta_manuals/enum_manual.cpp diff --git a/develop/manuals/meta_examples/function_example.cpp b/develop/manuals/meta_manuals/function_manual.cpp similarity index 100% rename from develop/manuals/meta_examples/function_example.cpp rename to develop/manuals/meta_manuals/function_manual.cpp diff --git a/develop/manuals/meta_examples/inplace_example.cpp b/develop/manuals/meta_manuals/inplace_manual.cpp similarity index 100% rename from develop/manuals/meta_examples/inplace_example.cpp rename to develop/manuals/meta_manuals/inplace_manual.cpp diff --git a/develop/manuals/meta_examples/member_example.cpp b/develop/manuals/meta_manuals/member_manual.cpp similarity index 100% rename from develop/manuals/meta_examples/member_example.cpp rename to develop/manuals/meta_manuals/member_manual.cpp diff --git a/develop/manuals/meta_examples/method_example.cpp b/develop/manuals/meta_manuals/method_manual.cpp similarity index 100% rename from develop/manuals/meta_examples/method_example.cpp rename to develop/manuals/meta_manuals/method_manual.cpp diff --git a/develop/manuals/meta_examples/scopes_example.cpp b/develop/manuals/meta_manuals/scopes_manual.cpp similarity index 100% rename from develop/manuals/meta_examples/scopes_example.cpp rename to develop/manuals/meta_manuals/scopes_manual.cpp diff --git a/develop/manuals/meta_examples/uvalue_example.cpp b/develop/manuals/meta_manuals/uvalue_manual.cpp similarity index 100% rename from develop/manuals/meta_examples/uvalue_example.cpp rename to develop/manuals/meta_manuals/uvalue_manual.cpp diff --git a/develop/manuals/meta_examples/variable_example.cpp b/develop/manuals/meta_manuals/variable_manual.cpp similarity index 100% rename from develop/manuals/meta_examples/variable_example.cpp rename to develop/manuals/meta_manuals/variable_manual.cpp