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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
#-------------------------------------------------
#
# Project created by QtCreator 2013-03-22T02:19:57
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = sasm
TEMPLATE = app
isEmpty(PREFIX) {
PREFIX = /usr
}
BINDIR = $$PREFIX/bin
DATADIR = $$PREFIX/share
bsd {
binfile.files += sasm
binfile.files += BSD/bin/*
binfile.path = $$BINDIR
data.files += BSD/share/sasm/*
data.path = $$DATADIR/sasm/
shortcutfiles.files += BSD/share/applications/sasm.desktop
shortcutfiles.path = $$DATADIR/applications/
docfiles.files += BSD/share/doc/sasm/changelog.gz
docfiles.files += BSD/share/doc/sasm/copyright
docfiles.path = $$DATADIR/doc/sasm/
} else {
binfile.files += sasm
binfile.files += Linux/bin/*
binfile.path = $$BINDIR
data.files += Linux/share/sasm/*
data.path = $$DATADIR/sasm/
shortcutfiles.files += Linux/share/applications/sasm.desktop
shortcutfiles.path = $$DATADIR/applications/
docfiles.files += Linux/share/doc/sasm/changelog.gz
docfiles.files += Linux/share/doc/sasm/copyright
docfiles.path = $$DATADIR/doc/sasm/
}
INSTALLS += binfile
INSTALLS += data
INSTALLS += shortcutfiles
INSTALLS += docfiles
include(singleapplication/qtsingleapplication.pri)
SOURCES += main.cpp\
mainwindow.cpp \
tab.cpp \
highlighter.cpp \
codeeditor.cpp \
debugger.cpp \
finddialog.cpp \
ruqtextedit.cpp \
ruqplaintextedit.cpp \
getstartedwidget.cpp \
debugtablewidget.cpp \
watchsettingswidget.cpp \
debuganycommandwidget.cpp \
assembler.cpp \
nasm.cpp \
gas.cpp \
common.cpp \
fasm.cpp \
signallocker.cpp \
masm.cpp \
gccbasedassembler.cpp
HEADERS += mainwindow.h \
tab.h \
highlighter.h \
codeeditor.h \
debugger.h \
finddialog.h \
ruqtextedit.h \
ruqplaintextedit.h \
getstartedwidget.h \
debugtablewidget.h \
watchsettingswidget.h \
debuganycommandwidget.h \
assembler.h \
nasm.h \
gas.h \
common.h \
fasm.h \
signallocker.h \
masm.h \
gccbasedassembler.h
FORMS += settings.ui
RESOURCES += \
Languages.qrc \
Images.qrc \
Help.qrc
RC_FILE = icon.rc
CODECFORTR = UTF-8
TRANSLATIONS += language_ru.ts \
language_tr.ts \
language_zh.ts \
language_de.ts \
language_it.ts \
language_pl.ts \
language_he.ts \
language_es.ts \
language_pt.ts
|