diff --git a/README.md b/README.md index db12e12..9e68999 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ [vmath.hpp][vmath] is a header-only library. All you need to do is copy the headers files from `headers` directory into your project and include them: ```cpp -#include "vmath.hpp/vmath.hpp" +#include "vmath.hpp/vmath_all.hpp" ``` Also, you can add the root repository directory to your [cmake](https://cmake.org) project: diff --git a/headers/vmath.hpp/vmath.hpp b/headers/vmath.hpp/vmath_all.hpp similarity index 100% rename from headers/vmath.hpp/vmath.hpp rename to headers/vmath.hpp/vmath_all.hpp diff --git a/singles/CMakeLists.txt b/singles/CMakeLists.txt index 9347453..5268cce 100644 --- a/singles/CMakeLists.txt +++ b/singles/CMakeLists.txt @@ -7,8 +7,8 @@ project(vmath.hpp.singles) find_package(PythonInterp REQUIRED) set(VMATH_ROOT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/..") -set(VMATH_SINGLES_INPUT "${VMATH_ROOT_DIR}/headers/vmath.hpp/vmath.hpp") -set(VMATH_SINGLES_OUTPUT "${VMATH_ROOT_DIR}/singles/headers/vmath.hpp/vmath.hpp") +set(VMATH_SINGLES_INPUT "${VMATH_ROOT_DIR}/headers/vmath.hpp/vmath_all.hpp") +set(VMATH_SINGLES_OUTPUT "${VMATH_ROOT_DIR}/singles/headers/vmath.hpp/vmath_all.hpp") file(GLOB_RECURSE VMATH_SINGLES_DEPENDS "${VMATH_ROOT_DIR}/headers/*.hpp") add_custom_command(OUTPUT "${VMATH_SINGLES_OUTPUT}" diff --git a/singles/headers/vmath.hpp/vmath.hpp b/singles/headers/vmath.hpp/vmath_all.hpp similarity index 100% rename from singles/headers/vmath.hpp/vmath.hpp rename to singles/headers/vmath.hpp/vmath_all.hpp diff --git a/untests/vmath_tests.hpp b/untests/vmath_tests.hpp index 30734a5..bac8b81 100644 --- a/untests/vmath_tests.hpp +++ b/untests/vmath_tests.hpp @@ -4,7 +4,7 @@ * Copyright (C) 2020-2022, by Matvey Cherevko (blackmatov@gmail.com) ******************************************************************************/ -#include +#include #include #define STATIC_CHECK(...)\