Skip to content

Commit 0ec0831

Browse files
committed
rename src/corelib to src/cpp
this is preparation for consolidating all C++ code into src/cpp
1 parent f44434f commit 0ec0831

File tree

114 files changed

+61
-61
lines changed

Some content is hidden

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

114 files changed

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

src/corelib/cors.h src/cpp/cors.h

File renamed without changes.
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
TEMPLATE = subdirs
22

3-
corelib.subdir = corelib
3+
cpp.subdir = cpp
44
tests.subdir = tests
5-
tests.depends = corelib
5+
tests.depends = cpp
66

77
tests.CONFIG += no_default_install
88

99
SUBDIRS += \
10-
corelib \
10+
cpp \
1111
tests
File renamed without changes.

src/corelib/corelib/corelib.pro src/cpp/cpp/cpp.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ CONFIG -= app_bundle
33
CONFIG += staticlib
44
QT -= gui
55
QT += network
6-
TARGET = pushpin-core
6+
TARGET = pushpin-cpp
77
DESTDIR = ..
88

99
MOC_DIR = $$OUT_PWD/_moc
1010
OBJECTS_DIR = $$OUT_PWD/_obj
1111

1212
include($$OUT_PWD/../../rust/lib.pri)
1313
include($$OUT_PWD/../../../conf.pri)
14-
include(corelib.pri)
14+
include(cpp.pri)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/corelib/jwt.h src/cpp/jwt.h

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/corelib/log.h src/cpp/log.h

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.
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.

src/corelib/tests/tests.pri src/cpp/tests/tests.pri

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ SRC_DIR = $$PWD/..
88
QZMQ_DIR = $$SRC_DIR/qzmq
99
RUST_DIR = $$SRC_DIR/../rust
1010

11-
LIBS += -L$$SRC_DIR -lpushpin-core
12-
PRE_TARGETDEPS += $$PWD/../libpushpin-core.a
11+
LIBS += -L$$SRC_DIR -lpushpin-cpp
12+
PRE_TARGETDEPS += $$PWD/../libpushpin-cpp.a
1313

1414
include($$PWD/../../rust/lib.pri)
1515
include($$PWD/../../../conf.pri)
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.

src/handler/libpushpin-handler/libpushpin-handler.pri

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ QMAKE_CFLAGS += $$(CFLAGS)
33
QMAKE_LFLAGS += $$(LDFLAGS)
44

55
SRC_DIR = $$PWD/..
6-
CORE_DIR = $$PWD/../../corelib
7-
QZMQ_DIR = $$CORE_DIR/qzmq
6+
CPP_DIR = $$PWD/../../cpp
7+
QZMQ_DIR = $$CPP_DIR/qzmq
88

99
INCLUDEPATH += $$SRC_DIR
10-
INCLUDEPATH += $$CORE_DIR
10+
INCLUDEPATH += $$CPP_DIR
1111

1212
INCLUDEPATH += $$QZMQ_DIR/src
1313

src/handler/libpushpin-handler/libpushpin-handler.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ DESTDIR = ..
99
MOC_DIR = $$OUT_PWD/_moc
1010
OBJECTS_DIR = $$OUT_PWD/_obj
1111

12-
LIBS += -L$$PWD/../../corelib -lpushpin-core
13-
PRE_TARGETDEPS += $$PWD/../../corelib/libpushpin-core.a
12+
LIBS += -L$$PWD/../../cpp -lpushpin-cpp
13+
PRE_TARGETDEPS += $$PWD/../../cpp/libpushpin-cpp.a
1414

1515
include($$OUT_PWD/../../rust/lib.pri)
1616
include($$OUT_PWD/../../../conf.pri)

src/handler/pushpin-handler/pushpin-handler.pri

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ QMAKE_CFLAGS += $$(CFLAGS)
33
QMAKE_LFLAGS += $$(LDFLAGS)
44

55
SRC_DIR = $$PWD/..
6-
CORE_DIR = $$PWD/../../corelib
7-
QZMQ_DIR = $$CORE_DIR/qzmq
6+
CPP_DIR = $$PWD/../../cpp
7+
QZMQ_DIR = $$CPP_DIR/qzmq
88

99
INCLUDEPATH += $$SRC_DIR
10-
INCLUDEPATH += $$CORE_DIR
10+
INCLUDEPATH += $$CPP_DIR
1111
INCLUDEPATH += $$QZMQ_DIR/src
1212

1313
DEFINES += NO_IRISNET

src/handler/pushpin-handler/pushpin-handler.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ OBJECTS_DIR = $$OUT_PWD/_obj
1010
LIBS += -L$$PWD/.. -lpushpin-handler
1111
PRE_TARGETDEPS += $$PWD/../libpushpin-handler.a
1212

13-
LIBS += -L$$PWD/../../corelib -lpushpin-core
14-
PRE_TARGETDEPS += $$PWD/../../corelib/libpushpin-core.a
13+
LIBS += -L$$PWD/../../cpp -lpushpin-cpp
14+
PRE_TARGETDEPS += $$PWD/../../cpp/libpushpin-cpp.a
1515

1616
include($$OUT_PWD/../../rust/lib.pri)
1717
include($$OUT_PWD/../../../conf.pri)

src/handler/tests/tests.pri

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ QT *= network testlib
55

66
TESTS_DIR = $$PWD
77
SRC_DIR = $$PWD/..
8-
CORE_DIR = $$PWD/../../corelib
9-
QZMQ_DIR = $$CORE_DIR/qzmq
8+
CPP_DIR = $$PWD/../../cpp
9+
QZMQ_DIR = $$CPP_DIR/qzmq
1010

1111
LIBS += -L$$SRC_DIR -lpushpin-handler
1212
PRE_TARGETDEPS += $$PWD/../libpushpin-handler.a
1313

14-
LIBS += -L$$PWD/../../corelib -lpushpin-core
15-
PRE_TARGETDEPS += $$PWD/../../corelib/libpushpin-core.a
14+
LIBS += -L$$PWD/../../cpp -lpushpin-cpp
15+
PRE_TARGETDEPS += $$PWD/../../cpp/libpushpin-cpp.a
1616

1717
include($$PWD/../../rust/lib.pri)
1818
include($$PWD/../../../conf.pri)
1919

2020
INCLUDEPATH += $$SRC_DIR
21-
INCLUDEPATH += $$CORE_DIR
21+
INCLUDEPATH += $$CPP_DIR
2222
INCLUDEPATH += $$QZMQ_DIR/src
2323

2424
DEFINES += NO_IRISNET

src/m2adapter/m2adapter.pri

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
CORE_DIR = $$PWD/../corelib
2-
QZMQ_DIR = $$PWD/../corelib/qzmq
1+
CPP_DIR = $$PWD/../cpp
2+
QZMQ_DIR = $$PWD/../cpp/qzmq
33

4-
INCLUDEPATH += $$CORE_DIR
4+
INCLUDEPATH += $$CPP_DIR
55

66
INCLUDEPATH += $$QZMQ_DIR/src
77

src/m2adapter/m2adapter.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ DESTDIR = ../../bin
88
MOC_DIR = $$OUT_PWD/_moc
99
OBJECTS_DIR = $$OUT_PWD/_obj
1010

11-
LIBS += -L$$PWD/../corelib -lpushpin-core
12-
PRE_TARGETDEPS += $$PWD/../corelib/libpushpin-core.a
11+
LIBS += -L$$PWD/../cpp -lpushpin-cpp
12+
PRE_TARGETDEPS += $$PWD/../cpp/libpushpin-cpp.a
1313

1414
include($$OUT_PWD/../rust/lib.pri)
1515
include($$OUT_PWD/../../conf.pri)

src/proxy/libpushpin-proxy/libpushpin-proxy.pri

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ QMAKE_CFLAGS += $$(CFLAGS)
33
QMAKE_LFLAGS += $$(LDFLAGS)
44

55
SRC_DIR = $$PWD/..
6-
CORE_DIR = $$PWD/../../corelib
7-
QZMQ_DIR = $$CORE_DIR/qzmq
6+
CPP_DIR = $$PWD/../../cpp
7+
QZMQ_DIR = $$CPP_DIR/qzmq
88
RUST_DIR = $$SRC_DIR/../rust
99

1010
INCLUDEPATH += $$SRC_DIR
11-
INCLUDEPATH += $$CORE_DIR
11+
INCLUDEPATH += $$CPP_DIR
1212

1313
INCLUDEPATH += $$QZMQ_DIR/src
1414

src/proxy/libpushpin-proxy/libpushpin-proxy.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ DESTDIR = ..
99
MOC_DIR = $$OUT_PWD/_moc
1010
OBJECTS_DIR = $$OUT_PWD/_obj
1111

12-
LIBS += -L$$PWD/../../corelib -lpushpin-core
13-
PRE_TARGETDEPS += $$PWD/../../corelib/libpushpin-core.a
12+
LIBS += -L$$PWD/../../cpp -lpushpin-cpp
13+
PRE_TARGETDEPS += $$PWD/../../cpp/libpushpin-cpp.a
1414

1515
include($$OUT_PWD/../../rust/lib.pri)
1616
include($$OUT_PWD/../../../conf.pri)

src/proxy/pushpin-proxy/pushpin-proxy.pri

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ QMAKE_CFLAGS += $$(CFLAGS)
33
QMAKE_LFLAGS += $$(LDFLAGS)
44

55
SRC_DIR = $$PWD/..
6-
CORE_DIR = $$PWD/../../corelib
7-
QZMQ_DIR = $$CORE_DIR/qzmq
6+
CPP_DIR = $$PWD/../../cpp
7+
QZMQ_DIR = $$CPP_DIR/qzmq
88
RUST_DIR = $$SRC_DIR/../rust
99

1010
INCLUDEPATH += $$SRC_DIR
11-
INCLUDEPATH += $$CORE_DIR
11+
INCLUDEPATH += $$CPP_DIR
1212
INCLUDEPATH += $$QZMQ_DIR/src
1313

1414
DEFINES += NO_IRISNET

src/proxy/pushpin-proxy/pushpin-proxy.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ OBJECTS_DIR = $$OUT_PWD/_obj
1111
LIBS += -L$$PWD/.. -lpushpin-proxy
1212
PRE_TARGETDEPS += $$PWD/../libpushpin-proxy.a
1313

14-
LIBS += -L$$PWD/../../corelib -lpushpin-core
15-
PRE_TARGETDEPS += $$PWD/../../corelib/libpushpin-core.a
14+
LIBS += -L$$PWD/../../cpp -lpushpin-cpp
15+
PRE_TARGETDEPS += $$PWD/../../cpp/libpushpin-cpp.a
1616

1717
include($$OUT_PWD/../../rust/lib.pri)
1818
include($$OUT_PWD/../../../conf.pri)

src/proxy/tests/tests.pri

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ QT *= network testlib
55

66
TESTS_DIR = $$PWD
77
SRC_DIR = $$PWD/..
8-
CORE_DIR = $$PWD/../../corelib
9-
QZMQ_DIR = $$CORE_DIR/qzmq
8+
CPP_DIR = $$PWD/../../cpp
9+
QZMQ_DIR = $$CPP_DIR/qzmq
1010
RUST_DIR = $$SRC_DIR/../rust
1111

1212
LIBS += -L$$SRC_DIR -lpushpin-proxy
1313
PRE_TARGETDEPS += $$PWD/../libpushpin-proxy.a
1414

15-
LIBS += -L$$PWD/../../corelib -lpushpin-core
16-
PRE_TARGETDEPS += $$PWD/../../corelib/libpushpin-core.a
15+
LIBS += -L$$PWD/../../cpp -lpushpin-cpp
16+
PRE_TARGETDEPS += $$PWD/../../cpp/libpushpin-cpp.a
1717

1818
include($$PWD/../../rust/lib.pri)
1919
include($$PWD/../../../conf.pri)
2020

2121
INCLUDEPATH += $$SRC_DIR
22-
INCLUDEPATH += $$CORE_DIR
22+
INCLUDEPATH += $$CPP_DIR
2323
INCLUDEPATH += $$QZMQ_DIR/src
2424

2525
DEFINES += NO_IRISNET

src/runner/librunner/librunner.pri

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ QMAKE_CFLAGS += $$(CFLAGS)
33
QMAKE_LFLAGS += $$(LDFLAGS)
44

55
SRC_DIR = $$PWD/..
6-
CORE_DIR = $$PWD/../../corelib
6+
CPP_DIR = $$PWD/../../cpp
77

88
INCLUDEPATH += $$SRC_DIR
9-
INCLUDEPATH += $$CORE_DIR
9+
INCLUDEPATH += $$CPP_DIR
1010

1111
DEFINES += NO_IRISNET
1212

src/runner/librunner/librunner.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ DESTDIR = ..
99
MOC_DIR = $$OUT_PWD/_moc
1010
OBJECTS_DIR = $$OUT_PWD/_obj
1111

12-
LIBS += -L$$PWD/../../corelib -lpushpin-core
13-
PRE_TARGETDEPS += $$PWD/../../corelib/libpushpin-core.a
12+
LIBS += -L$$PWD/../../cpp -lpushpin-cpp
13+
PRE_TARGETDEPS += $$PWD/../../cpp/libpushpin-cpp.a
1414

1515
include($$OUT_PWD/../../../conf.pri)
1616
include(librunner.pri)

src/runner/runner/runner.pri

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ QMAKE_CFLAGS += $$(CFLAGS)
33
QMAKE_LFLAGS += $$(LDFLAGS)
44

55
SRC_DIR = $$PWD/..
6-
CORE_DIR = $$PWD/../../corelib
6+
CPP_DIR = $$PWD/../../cpp
77

88
INCLUDEPATH += $$SRC_DIR
9-
INCLUDEPATH += $$CORE_DIR
9+
INCLUDEPATH += $$CPP_DIR
1010

1111
DEFINES += NO_IRISNET
1212

src/runner/runner/runner.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ OBJECTS_DIR = $$OUT_PWD/_obj
1111
LIBS += -L$$PWD/.. -lrunner
1212
PRE_TARGETDEPS += $$PWD/../librunner.a
1313

14-
LIBS += -L$$PWD/../../corelib -lpushpin-core
15-
PRE_TARGETDEPS += $$PWD/../../corelib/libpushpin-core.a
14+
LIBS += -L$$PWD/../../cpp -lpushpin-cpp
15+
PRE_TARGETDEPS += $$PWD/../../cpp/libpushpin-cpp.a
1616

1717
include($$OUT_PWD/../../../conf.pri)
1818
include(runner.pri)

src/runner/tests/tests.pri

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ QT *= network testlib
55

66
TESTS_DIR = $$PWD
77
SRC_DIR = $$PWD/..
8-
CORE_DIR = $$PWD/../../corelib
8+
CPP_DIR = $$PWD/../../cpp
99

1010
LIBS += -L$$SRC_DIR -lrunner
1111
PRE_TARGETDEPS += $$PWD/../librunner.a
1212

13-
LIBS += -L$$PWD/../../corelib -lpushpin-core
14-
PRE_TARGETDEPS += $$PWD/../../corelib/libpushpin-core.a
13+
LIBS += -L$$PWD/../../cpp -lpushpin-cpp
14+
PRE_TARGETDEPS += $$PWD/../../cpp/libpushpin-cpp.a
1515

1616
include($$PWD/../../../conf.pri)
1717

1818
INCLUDEPATH += $$SRC_DIR
19-
INCLUDEPATH += $$CORE_DIR
19+
INCLUDEPATH += $$CPP_DIR
2020

2121
DEFINES += NO_IRISNET

src/src.pro

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@ include($$OUT_PWD/../conf.pri)
44

55
rust.subdir = rust
66

7-
corelib.subdir = corelib
8-
corelib.depends = rust
7+
cpp.subdir = cpp
8+
cpp.depends = rust
99

1010
m2adapter.subdir = m2adapter
11-
m2adapter.depends = corelib
11+
m2adapter.depends = cpp
1212

1313
proxy.subdir = proxy
14-
proxy.depends = corelib
14+
proxy.depends = cpp
1515

1616
handler.subdir = handler
17-
handler.depends = corelib
17+
handler.depends = cpp
1818

1919
runner.subdir = runner
20-
runner.depends = corelib
20+
runner.depends = cpp
2121

2222
pushpin.subdir = pushpin
2323

2424
SUBDIRS += \
2525
rust \
26-
corelib \
26+
cpp \
2727
m2adapter \
2828
proxy \
2929
handler \

0 commit comments

Comments
 (0)