Skip to content

Commit 7778eb6

Browse files
committed
Rearranged folders to support submodules
1 parent 22f895e commit 7778eb6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+26
-26
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/animation.test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include <functional>
22
#include <catch.hpp>
3-
#include "../include/kit/math/common.h"
4-
#include "../include/kit/log/log.h"
3+
#include "../kit/math/common.h"
4+
#include "../kit/log/log.h"
55
#include <SDL2/SDL.h>
6-
#include "../include/kit/freq/animation.h"
6+
#include "../kit/freq/animation.h"
77
using namespace std;
88

99
TEST_CASE("Animation","[animation]") {

tests/args.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <catch.hpp>
2-
#include "../include/kit/args/args.h"
3-
#include "../include/kit/log/log.h"
2+
#include "../kit/args/args.h"
3+
#include "../kit/log/log.h"
44
using namespace std;
55

66
TEST_CASE("Args","[args]") {

tests/async.test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <catch.hpp>
2-
#include "../include/kit/kit.h"
3-
#include "../include/kit/async/async.h"
4-
#include "../include/kit/async/async_fstream.h"
2+
#include "../kit/kit.h"
3+
#include "../kit/async/async.h"
4+
#include "../kit/async/async_fstream.h"
55
//#include "../include/kit/async/task.h"
66
//#include "../include/kit/async/channel.h"
77
//#include "../include/kit/async/multiplexer.h"

tests/cache.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <catch.hpp>
2-
#include "../include/kit/cache/cache.h"
2+
#include "../kit/cache/cache.h"
33
using namespace std;
44

55
struct Object

tests/factory.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <catch.hpp>
2-
#include "../include/kit/factory/factory.h"
2+
#include "../kit/factory/factory.h"
33
using namespace std;
44

55
TEST_CASE("Factory","[factory]") {

tests/log.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <catch.hpp>
22
#include <thread>
3-
#include "../include/kit/log/log.h"
3+
#include "../kit/log/log.h"
44
using namespace std;
55

66
TEST_CASE("Log","[log]") {

tests/meta.test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <catch.hpp>
2-
#include "../include/kit/kit.h"
3-
#include "../include/kit/meta/meta.h"
4-
#include "../include/kit/math/common.h"
2+
#include "../kit/kit.h"
3+
#include "../kit/meta/meta.h"
4+
#include "../kit/math/common.h"
55
using namespace std;
66

77
TEST_CASE("Meta","[meta]") {

tests/mutex_wrap.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <catch.hpp>
2-
#include "../include/kit/kit.h"
2+
#include "../kit/kit.h"
33
using namespace std;
44
using namespace kit;
55

tests/net.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <catch.hpp>
2-
#include "../include/kit/net/net.h"
2+
#include "../kit/net/net.h"
33
#include <string>
44
using namespace std;
55

tests/reactive.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <catch.hpp>
2-
#include "../include/kit/reactive/reactive.h"
3-
#include "../include/kit/reactive/signal.h"
2+
#include "../kit/reactive/reactive.h"
3+
#include "../kit/reactive/signal.h"
44
using namespace std;
55
using namespace kit;
66

tests/schema.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <catch.hpp>
22
#include <memory>
3-
#include "../include/kit/meta/schema.h"
3+
#include "../kit/meta/schema.h"
44
using namespace std;
55

66
TEST_CASE("Schema","[schema]") {

tests/slice.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <catch.hpp>
2-
#include "../include/kit/kit.h"
2+
#include "../kit/kit.h"
33
using namespace std;
44

55
TEST_CASE("Slice","[slice]") {

toys/src/chat.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include "../../include/kit/net/net.h"
2-
#include "../../include/kit/log/log.h"
1+
#include "../../kit/net/net.h"
2+
#include "../../kit/log/log.h"
33
#include <iostream>
44
#include <memory>
55
#include <boost/lexical_cast.hpp>

toys/src/echo.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include "../../include/kit/net/net.h"
2-
#include "../../include/kit/log/log.h"
1+
#include "../../kit/net/net.h"
2+
#include "../../kit/log/log.h"
33
#include <iostream>
44
#include <memory>
55
#include <boost/lexical_cast.hpp>

toys/src/stability.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include "../../include/kit/async/async.h"
2-
#include "../../include/kit/log/log.h"
1+
#include "../../kit/async/async.h"
2+
#include "../../kit/log/log.h"
33
#include <chrono>
44
using namespace std;
55

0 commit comments

Comments
 (0)