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
|
include( ../common.pro )
SOURCES = src/main.cpp \
src/mesh2mainwindow.cpp \
src/colormapreader.cpp \
src/lightingdlg.cpp \
src/mesh.cpp
HEADERS = src/mesh2mainwindow.h \
src/functions.h \
src/colormapreader.h \
src/lightingdlg.h \
src/femreader.h
!isEmpty( ISQT4 ) {
SOURCES += src/designerworkaround.cpp
HEADERS += src/designerworkaround.h
FORMS = src/mesh2mainwindowbase4.ui \
src/lightingdlgbase4.ui
}
isEmpty( ISQT4 ) {
FORMS = src/mesh2mainwindowbase.ui \
src/lightingdlgbase.ui
}
|