Add test_utl.

This commit is contained in:
Ernie Pasveer
2022-08-06 15:38:15 -05:00
parent a2f5aeb8a5
commit a19dfd0d75
3 changed files with 13 additions and 1 deletions
+1
View File
@@ -0,0 +1 @@
test_utl
+11
View File
@@ -0,0 +1,11 @@
.PHONY: all
all: test_utl
# Needs a valid build directory to get SeerUtl.cpp.o
test_utl: test_utl.cpp
g++ -I/usr/include/qt5 -g -o test_utl test_utl.cpp ../../src/build/CMakeFiles/seer.dir/SeerUtl.cpp.o -L/usr/lib64 -lQt5Core
.PHONY: clean
clean:
rm -f test_utl test_utl.o
+1 -1
View File
@@ -1,4 +1,4 @@
#include "SeerUtl.h"
#include "../../src/SeerUtl.h"
#include <QtCore/QString>
#include <QtCore/QStringList>
#include <QtCore/QDebug>