Relocate test output to bin/
.
The executables couldn't be run without the libraries next to them.
This commit is contained in:
parent
204877e706
commit
8d384d7d85
12
.github/workflows/main.yml
vendored
12
.github/workflows/main.yml
vendored
@ -28,6 +28,12 @@ jobs:
|
||||
qmake
|
||||
make
|
||||
mv bin/config_sample bin/config
|
||||
|
||||
- name: Run tests
|
||||
run |
|
||||
for test in bin_tests/; do
|
||||
./$test
|
||||
done;
|
||||
|
||||
- name: Upload binary
|
||||
uses: actions/upload-artifact@v2
|
||||
@ -52,6 +58,12 @@ jobs:
|
||||
nmake
|
||||
windeployqt bin\akashi.exe --release --no-opengl-sw
|
||||
mv bin\config_sample bin\config
|
||||
|
||||
- name: Run tests
|
||||
run |
|
||||
for test in bin_tests/; do
|
||||
./$test
|
||||
done;
|
||||
|
||||
- name: Upload zip
|
||||
uses: actions/upload-artifact@v2
|
||||
|
@ -26,9 +26,8 @@ RC_ICONS = resource/icon/akashi.ico
|
||||
SOURCES += main.cpp
|
||||
|
||||
# Include the akashi library
|
||||
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../lib/release/ -llib
|
||||
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../lib/debug/ -llib
|
||||
else:unix: LIBS += -L$$OUT_PWD/../lib/ -llib
|
||||
win32: LIBS += -L$$PWD/../bin/ -llib
|
||||
else:unix: LIBS += -L$$PWD/../bin/ -llib
|
||||
|
||||
INCLUDEPATH += $$PWD/../lib
|
||||
DEPENDPATH += $$PWD/../lib
|
||||
|
@ -5,6 +5,8 @@ TEMPLATE = lib
|
||||
|
||||
CONFIG += shared c++11
|
||||
|
||||
DESTDIR = $$PWD/../bin
|
||||
|
||||
# You can make your code fail to compile if it uses deprecated APIs.
|
||||
# In order to do so, uncomment the following line.
|
||||
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||||
|
@ -5,9 +5,8 @@ CONFIG -= app_bundle
|
||||
|
||||
DESTDIR = $$PWD/../bin_tests
|
||||
|
||||
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../lib/release/ -llib
|
||||
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../lib/debug/ -llib
|
||||
else:unix: LIBS += -L$$OUT_PWD/../../lib/ -llib
|
||||
win32: LIBS += -L$$PWD/../bin/ -llib
|
||||
else:unix: LIBS += -L$$PWD/../bin/ -llib
|
||||
|
||||
INCLUDEPATH += $$PWD/../lib
|
||||
DEPENDPATH += $$PWD/../lib
|
||||
|
Loading…
Reference in New Issue
Block a user