We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe7cd13 commit d69dd98Copy full SHA for d69dd98
main.cpp
@@ -1,6 +1,6 @@
1
#include <QCoreApplication>
2
#include <QTest>
3
-#include "aestest.h"
+#include "unit_test/aestest.h"
4
5
int main(int argc, char *argv[])
6
{
qaesencryption.pro
@@ -11,7 +11,7 @@ TEMPLATE = app
11
12
SOURCES += main.cpp \
13
qaesencryption.cpp \
14
- aestest.cpp
+ unit_test/aestest.cpp
15
16
# The following define makes your compiler emit warnings if you use
17
# any feature of Qt which as been marked deprecated (the exact warnings
@@ -26,5 +26,5 @@ DEFINES += QT_DEPRECATED_WARNINGS
26
27
HEADERS += \
28
qaesencryption.h \
29
- aestest.h
+ unit_test/aestest.h
30
aestest.cpp renamed to unit_test/aestest.cpp
aestest.h renamed to unit_test/aestest.h
0 commit comments