mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 17:35:34 +08:00
Added qmake project files / standardized #includes
This commit is contained in:
35
samples/interpolator/interpolator.pro
Normal file
35
samples/interpolator/interpolator.pro
Normal file
@@ -0,0 +1,35 @@
|
||||
QT += core
|
||||
QT -= gui
|
||||
|
||||
TARGET = sample_interpolator
|
||||
TEMPLATE = app
|
||||
|
||||
CONFIG += console
|
||||
CONFIG -= app_bundle
|
||||
|
||||
DEPENDPATH += . ../../src
|
||||
|
||||
INCLUDEPATH += . ../../src
|
||||
|
||||
SOURCES += main.cpp\
|
||||
|
||||
win32-msvc* {
|
||||
PRE_TARGETDEPS += ../../lib/blackmisc.lib \
|
||||
../../lib/blackcore.lib
|
||||
|
||||
LIBS += ../../lib/blackmisc.lib \
|
||||
../../lib/blackcore.lib
|
||||
}
|
||||
|
||||
!win32-msvc* {
|
||||
PRE_TARGETDEPS += ../../lib/libblackmisc.a \
|
||||
../../lib/libblackcore.a
|
||||
|
||||
LIBS += ../../lib/libblackmisc.a \
|
||||
../../lib/libblackcore.a
|
||||
}
|
||||
|
||||
DESTDIR = ../../bin
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user