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.
|
- # QtCreator project file
-
- QT = core gui
-
- TARGET = carla-frontend
- TEMPLATE = app
- VERSION = 1.9.0
-
- # -------------------------------------------------------
-
- CONFIG = debug
- CONFIG += qt resources warn_on
-
- DEFINES = DEBUG
- DEFINES += REAL_BUILD
-
- # -------------------------------------------------------
-
- SOURCES = \
- carla_host.cpp \
- carla_shared.cpp \
- carla_style.cpp
-
- HEADERS += \
- carla_shared.hpp \
- carla_style.hpp
-
- RESOURCES = ../../resources/resources.qrc
-
- # -------------------------------------------------------
-
- HEADERS += \
- ../includes/CarlaDefines.h
-
- HEADERS += \
- ../backend/CarlaBackend.h \
- ../backend/CarlaHost.h
-
- # -------------------------------------------------------
-
- INCLUDEPATH = \
- ../backend \
- ../includes \
- ../modules \
- ../utils
-
- # -------------------------------------------------------
-
- LIBS = ../modules/theme.qt4.a
- LIBS += -L../backend -lcarla_standalone2
-
- # -------------------------------------------------------
-
- QMAKE_CXXFLAGS += -Wall -Wextra -pipe
- QMAKE_CXXFLAGS += -Werror -Wcast-align -Wcast-qual -Wconversion -Wformat-security -Wredundant-decls -Wshadow -Wstrict-overflow -fstrict-overflow -Wundef -Wunsafe-loop-optimizations -Wwrite-strings
- QMAKE_CXXFLAGS += -Wnon-virtual-dtor -Woverloaded-virtual
- QMAKE_CXXFLAGS += -Wlogical-op -Wsign-conversion
- # -Wmissing-declarations
- QMAKE_CXXFLAGS += -O0 -g
- QMAKE_CXXFLAGS += -std=c++0x -std=gnu++0x
- QMAKE_CXXFLAGS += -isystem /opt/kxstudio/include -isystem /usr/include/qt4
-
- # -------------------------------------------------------
|