From 55ab81dc937654ce33cabca9abac0b8b00e45650 Mon Sep 17 00:00:00 2001 From: BlackMATov Date: Tue, 14 May 2019 12:45:27 +0700 Subject: [PATCH] ecs_hpp to ecs.hpp for include path --- README.md | 2 +- headers/{ecs_hpp => ecs.hpp}/ecs.hpp | 0 untests/ecs_tests.cpp | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename headers/{ecs_hpp => ecs.hpp}/ecs.hpp (100%) diff --git a/README.md b/README.md index 4abb0d9..1cf05db 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ [ecs.hpp][ecs] 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 "ecs_hpp/ecs.hpp" +#include "ecs.hpp/ecs.hpp" ``` Also, you can add the root repository directory to your [cmake](https://cmake.org) project: diff --git a/headers/ecs_hpp/ecs.hpp b/headers/ecs.hpp/ecs.hpp similarity index 100% rename from headers/ecs_hpp/ecs.hpp rename to headers/ecs.hpp/ecs.hpp diff --git a/untests/ecs_tests.cpp b/untests/ecs_tests.cpp index 6cf11d8..c32e5c5 100644 --- a/untests/ecs_tests.cpp +++ b/untests/ecs_tests.cpp @@ -7,7 +7,7 @@ #define CATCH_CONFIG_FAST_COMPILE #include -#include +#include namespace ecs = ecs_hpp; namespace