Rename lib to core.

On Linux, the resulting shared library would have been called `liblib`, which is just dumb.
This commit is contained in:
Cerapter 2021-04-26 21:14:25 +02:00
parent 8d384d7d85
commit f5cc137b40
34 changed files with 9 additions and 9 deletions

View File

@ -1,7 +1,7 @@
TEMPLATE = subdirs TEMPLATE = subdirs
SUBDIRS += \ SUBDIRS += \
lib \ core \
akashi \ akashi \
tests tests

View File

@ -26,8 +26,8 @@ RC_ICONS = resource/icon/akashi.ico
SOURCES += main.cpp SOURCES += main.cpp
# Include the akashi library # Include the akashi library
win32: LIBS += -L$$PWD/../bin/ -llib win32: LIBS += -L$$PWD/../bin/ -lcore
else:unix: LIBS += -L$$PWD/../bin/ -llib else:unix: LIBS += -L$$PWD/../bin/ -lcore
INCLUDEPATH += $$PWD/../lib INCLUDEPATH += $$PWD/../core
DEPENDPATH += $$PWD/../lib DEPENDPATH += $$PWD/../core

View File

@ -5,8 +5,8 @@ CONFIG -= app_bundle
DESTDIR = $$PWD/../bin_tests DESTDIR = $$PWD/../bin_tests
win32: LIBS += -L$$PWD/../bin/ -llib win32: LIBS += -L$$PWD/../bin/ -lcore
else:unix: LIBS += -L$$PWD/../bin/ -llib else:unix: LIBS += -L$$PWD/../bin/ -lcore
INCLUDEPATH += $$PWD/../lib INCLUDEPATH += $$PWD/../core
DEPENDPATH += $$PWD/../lib DEPENDPATH += $$PWD/../core