diff options
author | Florent Le Coz <louiz@louiz.org> | 2013-11-10 03:35:31 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2013-11-10 03:35:31 +0100 |
commit | af4fc92c215e48cf13be36a1f8e8e1a821dabb5a (patch) | |
tree | 6ce328f33b320d3db94ac673a374c7355684b738 | |
parent | 5cb81cace08b016f50708bb8ef718e07865b435a (diff) | |
download | biboumi-af4fc92c215e48cf13be36a1f8e8e1a821dabb5a.tar.gz biboumi-af4fc92c215e48cf13be36a1f8e8e1a821dabb5a.tar.bz2 biboumi-af4fc92c215e48cf13be36a1f8e8e1a821dabb5a.tar.xz biboumi-af4fc92c215e48cf13be36a1f8e8e1a821dabb5a.zip |
Fix the include of the config.h
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/utils/encoding.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b0d2801..a7ff1d4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -81,4 +81,4 @@ target_link_libraries(test bridge utils) -CONFIGURE_FILE(config.h.cmake config.h @ONLY) +CONFIGURE_FILE(config.h.cmake src/config.h @ONLY) diff --git a/src/utils/encoding.cpp b/src/utils/encoding.cpp index 2d95132..634964b 100644 --- a/src/utils/encoding.cpp +++ b/src/utils/encoding.cpp @@ -7,7 +7,7 @@ #include <string.h> #include <iconv.h> -#include "config.h" +#include <config.h> /** * The UTF-8-encoded character used as a place holder when a character conversion fails. |