diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-07-11 21:53:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-07-11 21:53:04 +0300 |
commit | 8ca1f3d1666b8dc710af2b216c8ce71ecc2ac471 (patch) | |
tree | 35334434f931a50df1232771b49d54b04179193e /src/maingui.cpp | |
parent | 71485eae058bab256770e90e5de196b3baf01cea (diff) | |
download | mv-8ca1f3d1666b8dc710af2b216c8ce71ecc2ac471.tar.gz mv-8ca1f3d1666b8dc710af2b216c8ce71ecc2ac471.tar.bz2 mv-8ca1f3d1666b8dc710af2b216c8ce71ecc2ac471.tar.xz mv-8ca1f3d1666b8dc710af2b216c8ce71ecc2ac471.zip |
Move doctest and catch files into unittests directory.
Diffstat (limited to 'src/maingui.cpp')
-rw-r--r-- | src/maingui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/maingui.cpp b/src/maingui.cpp index 235d34df8..9e7efa9c6 100644 --- a/src/maingui.cpp +++ b/src/maingui.cpp @@ -56,11 +56,11 @@ PRAGMA48(GCC diagnostic pop) #include "resources/dye/dyepalette.h" #ifdef UNITTESTS_CATCH #define CATCH_CONFIG_RUNNER -#include "test/catch.hpp" +#include "unittests/catch.hpp" #endif // UNITTESTS_CATCH #ifdef UNITTESTS_DOCTEST #define DOCTEST_CONFIG_IMPLEMENT -#include "test/doctest.h" +#include "unittests/doctest.h" #endif // UNITTESTS_DOCTEST #else // UNITTESTS #include "utils/xml.h" |