mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-10 20:52:11 +01:00
38 lines
1.1 KiB
Prolog
38 lines
1.1 KiB
Prolog
|
#
|
||
|
# This file is part of SDLGamepad.
|
||
|
#
|
||
|
# SDLGamepad is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation, either version 3 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# SDLGamepad is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with Foobar. If not, see <http://www.gnu.org/licenses/>.
|
||
|
#
|
||
|
# Manuel Blanquett
|
||
|
# mail.nalla@gmail.com
|
||
|
#
|
||
|
|
||
|
TEMPLATE = lib
|
||
|
TARGET = sdlgamepad
|
||
|
DEFINES += SDLGAMEPAD_LIBRARY
|
||
|
|
||
|
include(../../openpilotgcslibrary.pri)
|
||
|
|
||
|
SOURCES += sdlgamepad.cpp
|
||
|
HEADERS += sdlgamepad.h \
|
||
|
sdlgamepad_global.h
|
||
|
|
||
|
macx:LIBS += -framework SDL
|
||
|
!macx:LIBS += -lSDL
|
||
|
|
||
|
OTHER_FILES += COPYING \
|
||
|
README \
|
||
|
sdlgamepad.dox \
|
||
|
sdlgamepad.doc
|