Rename lib
to core
.
On Linux, the resulting shared library would have been called `liblib`, which is just dumb.
This commit is contained in:
parent
8d384d7d85
commit
f5cc137b40
@ -1,7 +1,7 @@
|
|||||||
TEMPLATE = subdirs
|
TEMPLATE = subdirs
|
||||||
|
|
||||||
SUBDIRS += \
|
SUBDIRS += \
|
||||||
lib \
|
core \
|
||||||
akashi \
|
akashi \
|
||||||
tests
|
tests
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user