move headers in subdirectory utf8cpp

This commit is contained in:
Matthieu Longo 2019-05-10 22:34:19 +01:00
parent 82c674b7a7
commit e4f1ed4808
13 changed files with 8 additions and 8 deletions

View file

@ -20,7 +20,7 @@ if(UTF8_INSTALL)
set(DEF_INSTALL_CMAKE_DIR ${CMAKE_INSTALL_LIBDIR}/cmake/utf8cpp)
endif()
install(DIRECTORY source/ DESTINATION include/utf8cpp)
install(DIRECTORY source/ DESTINATION include)
install(TARGETS utf8cpp EXPORT utf8cppConfig)
install(EXPORT utf8cppConfig DESTINATION ${DEF_INSTALL_CMAKE_DIR})
endif()

View file

@ -1,4 +1,4 @@
#include "../source/utf8.h"
#include "utf8cpp/utf8.h"
#include <iostream>
#include <fstream>
#include <string>

View file

@ -1,4 +1,4 @@
#include "utf8.h"
#include "utf8cpp/utf8.h"
using namespace utf8;
#include <string>

View file

@ -1,5 +1,5 @@
#include "gtest/gtest.h"
#include "utf8.h"
#include "utf8cpp/utf8.h"
#include <string>
#include <vector>

View file

@ -1,5 +1,5 @@
#include "gtest/gtest.h"
#include "utf8.h"
#include "utf8cpp/utf8.h"
using namespace utf8;

View file

@ -1,5 +1,5 @@
#include "gtest/gtest.h"
#include "utf8.h"
#include "utf8cpp/utf8.h"
#include <string>
using namespace utf8;
using namespace std;

View file

@ -1,5 +1,5 @@
#include "gtest/gtest.h"
#include "utf8/unchecked.h"
#include "utf8cpp/utf8/unchecked.h"
#include <string>
#include <vector>

View file

@ -1,5 +1,5 @@
#include "gtest/gtest.h"
#include "utf8/unchecked.h"
#include "utf8cpp/utf8/unchecked.h"
using namespace utf8::unchecked;