diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-25 07:38:38 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-25 07:38:38 +0200 |
commit | f39b37351c509c180475dbdfbe01001ebfac13a4 (patch) | |
tree | 3a75bba80fa629c7c531fd7287ad5908f4f14a4e /tests/tests.cpp | |
parent | 8672430acd999eb39d3990aa6c73ac496e73bfa6 (diff) | |
download | weechat-f39b37351c509c180475dbdfbe01001ebfac13a4.zip |
tests: fix build of tests when the build directory is outside source tree (closes #178)
Diffstat (limited to 'tests/tests.cpp')
-rw-r--r-- | tests/tests.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/tests.cpp b/tests/tests.cpp index 94bf8f536..95e3e9b33 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -32,13 +32,13 @@ extern "C" #ifndef HAVE_CONFIG_H #define HAVE_CONFIG_H #endif -#include "../src/core/weechat.h" -#include "../src/core/wee-hook.h" -#include "../src/core/wee-input.h" -#include "../src/core/wee-string.h" -#include "../src/plugins/plugin.h" -#include "../src/gui/gui-main.h" -#include "../src/gui/gui-buffer.h" +#include "src/core/weechat.h" +#include "src/core/wee-hook.h" +#include "src/core/wee-input.h" +#include "src/core/wee-string.h" +#include "src/plugins/plugin.h" +#include "src/gui/gui-main.h" +#include "src/gui/gui-buffer.h" extern void gui_main_init (); extern void gui_main_loop (); |