mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 16:56:53 +08:00
- unused variables - linker error with the MinGW DX SDK - don't delete a void* pointer - initialization order
34 lines
954 B
Prolog
34 lines
954 B
Prolog
include (../../../../config.pri)
|
|
include (../../../../build.pri)
|
|
|
|
QT += core dbus gui network
|
|
|
|
TARGET = simulator_fs9
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += plugin shared
|
|
CONFIG += blackmisc blackcore blacksim
|
|
|
|
LIBS += -lsimulator_fscommon -lFSUIPC_User -luuid
|
|
|
|
# required for FSUIPC
|
|
win32:!win32-g++*: QMAKE_LFLAGS += /NODEFAULTLIB:LIBC.lib
|
|
|
|
DEPENDPATH += . ../../../../src
|
|
INCLUDEPATH += . ../../../../src
|
|
|
|
LIBS += -ldxguid -lole32
|
|
|
|
SOURCES += *.cpp
|
|
HEADERS += *.h
|
|
|
|
win32:!win32-g++*: PRE_TARGETDEPS += ../../../../lib/blackmisc.lib \
|
|
../../../../lib/blacksim.lib \
|
|
../../../../lib/blackcore.lib
|
|
else: PRE_TARGETDEPS += ../../../../lib/libblackmisc.a \
|
|
../../../../lib/libblacksim.a \
|
|
../../../../lib/libblackcore.a
|
|
|
|
DESTDIR = ../../../../bin/plugins/simulator
|
|
include (../../../../libraries.pri)
|