This repository has been archived on 2025-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
yachat/crashreporter/crashreporter.pro

34 lines
831 B
Prolog
Raw Permalink Normal View History

2025-12-25 01:37:49 +05:00
TEMPLATE = app
CONFIG += qt debug
CONFIG -= app_bundle
QT += gui network
SOURCES += crashreporter.cpp
INTERFACES += crashreporter.ui
include($$PWD/mailmsg/mailmsg.pri)
include(/users/mblsha/src/psi-git/qa/oldtest/unittest.pri)
mac {
QMAKE_POST_LINK = rm -f ../test/test.app/Contents/Resources/crashreporter; mkdir -p ../test/test.app/Contents/Resources; cp crashreporter ../test/test.app/Contents/Resources
}
win32 {
QMAKE_POST_LINK = del /Q ..\test\release\crashreporter.exe && copy release\crashreporter.exe ..\test\release\crashreporter.exe
}
windows {
# otherwise we would get 'unresolved external _WinMainCRTStartup'
# when compiling with MSVC
MOC_DIR = _moc
OBJECTS_DIR = _obj
UI_DIR = _ui
RCC_DIR = _rcc
}
!windows {
MOC_DIR = .moc
OBJECTS_DIR = .obj
UI_DIR = .ui
RCC_DIR = .rcc
}