-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLALWE.pro
More file actions
55 lines (42 loc) · 1.46 KB
/
LALWE.pro
File metadata and controls
55 lines (42 loc) · 1.46 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#-------------------------------------------------
#
# Project created by QtCreator 2016-03-10T18:33:33
#
#-------------------------------------------------
QT += qml quick core concurrent
TARGET = LALWE
TEMPLATE = app
SOURCES += main.cpp\
assembler.cpp \
ram.cpp \
logger.cpp \
constants.cpp \
processor.cpp \
controller.cpp \
register.cpp \
alu.cpp \
lalwe_appmanager.cpp
HEADERS += \
assembler.h \
ram.h \
logger.h \
constants.h \
processor.h \
controller.h \
register.h \
alu.h \
lalwe_appmanager.h
CONFIG += c++11
RC_ICONS = Lalwe_icon.ico
VERSION = 2.0
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
RESOURCES += \
qml.qrc
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../stxxl-1.4.1/build/lib/release/ -lstxxl
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../stxxl-1.4.1/build/lib/debug/ -lstxxl
INCLUDEPATH += $$PWD/../../stxxl-1.4.1/build/include
DEPENDPATH += $$PWD/../../stxxl-1.4.1/build/include
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../../stxxl-1.4.1/build/lib/release/libstxxl.a
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../../stxxl-1.4.1/build/lib/debug/libstxxl.a
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../../stxxl-1.4.1/build/lib/release/stxxl.lib
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../../stxxl-1.4.1/build/lib/debug/stxxl.lib