You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
731 B
45 lines
731 B
9 years ago
|
TEMPLATE = app
|
||
|
CONFIG += console
|
||
|
CONFIG -= app_bundle
|
||
|
CONFIG -= qt
|
||
|
|
||
|
INCLUDEPATH += \
|
||
|
lib \
|
||
|
/usr/avr/include
|
||
|
|
||
|
DEFINES += __AVR_ATmega328P__ F_CPU=16000000UL
|
||
|
|
||
|
DISTFILES += \
|
||
|
style.astylerc \
|
||
|
Makefile
|
||
|
|
||
|
HEADERS += \
|
||
|
lib/calc.h \
|
||
|
lib/iopins.h \
|
||
|
lib/usart.h
|
||
|
|
||
|
SOURCES += \
|
||
|
lib/iopins.c \
|
||
|
main.c
|
||
|
|
||
|
# === Flags for the Clang code model===
|
||
|
#
|
||
|
#-Weverything
|
||
|
#-Wno-c++98-compat
|
||
|
#-Wno-c++98-compat-pedantic
|
||
|
#-Wno-unused-macros
|
||
|
#-Wno-newline-eof
|
||
|
#-Wno-exit-time-destructors
|
||
|
#-Wno-global-constructors
|
||
|
#-Wno-gnu-zero-variadic-macro-arguments
|
||
|
#-Wno-documentation
|
||
|
#-Wno-missing-prototypes
|
||
|
#-std=gnu99
|
||
|
#-Wno-gnu
|
||
|
#-Wno-format-nonliteral
|
||
|
#-Wno-conversion
|
||
|
#-Wno-pointer-sign
|
||
|
#-Wno-unknown-attributes
|
||
|
#-Wno-main-return-type
|
||
|
#-Wno-missing-noreturn
|