mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 22:06:34 +00:00
28 lines
795 B
Prolog
28 lines
795 B
Prolog
QT += core
|
|
QT += network
|
|
QT -= gui
|
|
|
|
CONFIG += c++17 console
|
|
|
|
TARGET = a8_remote
|
|
|
|
QMAKE_CXXFLAGS = -O0 -g -ggdb -fsanitize=undefined,address,bounds,float-divide-by-zero,integer-divide-by-zero,null,return,signed-integer-overflow,unreachable,shift,alignment,nonnull-attribute,returns-nonnull-attribute,enum
|
|
QMAKE_LFLAGS = -O0 -g -ggdb -fsanitize=undefined,address,bounds,float-divide-by-zero,integer-divide-by-zero,null,return,signed-integer-overflow,unreachable,shift,alignment,nonnull-attribute,returns-nonnull-attribute,enum
|
|
|
|
QMAKE_CXX = g++
|
|
QMAKE_CC = gcc
|
|
|
|
# Not nice, but for some reason QtCreator doesn't use /usr/lib/ccache/g++ from the PATH
|
|
linux-g++ {
|
|
QMAKE_CXX = g++
|
|
QMAKE_CC = gcc
|
|
}
|
|
|
|
SOURCES += \
|
|
main.cpp \
|
|
remoteControl.cpp
|
|
|
|
HEADERS += \
|
|
remoteControl.hpp
|
|
|