-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpimization.pro
More file actions
39 lines (39 loc) · 923 Bytes
/
Opimization.pro
File metadata and controls
39 lines (39 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
TEMPLATE = app
TARGET = app
QT += core \
gui
HEADERS += src/parser/Modeler.h \
src/utils/Utils.h \
src/utils/Problem.h \
src/utils/tree.h \
src/parser/ParametersSet.h \
src/app/ApplicationController.h \
src/parser/FileParser.h \
src/gui/MainWindow.h
SOURCES += src/parser/Modeler.cpp \
src/bab/BranchAndBound.cpp \
src/utils/Problem.cpp \
src/parser/ParametersSet.cpp \
src/app/ApplicationController.cpp \
src/parser/FileParser.cpp \
src/gui/MainWindow.cpp \
src/app/main.cpp
FORMS += src/gui/MainWindow.ui
DEPENDPATH += . \
src/
INCLUDEPATH += . \
src/
unix::LIBS += -L/usr/lib/lpsolve \
-llpsolve55 \
-L/usr/lib \
-lcolamd
win32 {
DEPENDPATH += include \
include/lpsolve
INCLUDEPATH += include/ \
include/lpsolve
LIBS += -L"lib" \
-llpsolve55
CONFIG += console
}
RESOURCES += resources/resources.qrc