Sun, 22 Sep 2013 23:27:07 +0300
it's LDForge's 1st birthday!
- moved the project qmake code into ldforge.pro, removing src/src.pro in the process, with UI_DIR there is no need to have the main qmake in src/
- added moc #include directives to relevant source files, speeding up compile
485 | 1 | TARGET = ../ldforge |
2 | DEPENDPATH += . | |
3 | INCLUDEPATH += . | |
4 | RC_FILE = ../ldforge.rc | |
5 | RESOURCES = ../ldforge.qrc | |
6 | RCC_DIR = ./build/ | |
7 | OBJECTS_DIR = ./build/ | |
8 | MOC_DIR = ./build/ | |
9 | RCC_DIR = ./build/ | |
10 | SOURCES = *.cpp | |
11 | HEADERS = *.h | |
12 | FORMS = ui/*.ui | |
13 | QT += opengl network | |
14 | QMAKE_CXXFLAGS += -std=c++0x | |
15 | ||
16 | unix { | |
17 | LIBS += -lGLU | |
18 | } |