-
Gigg, Martyn Anthony authored
CreateSampleShapeDialog - Tidyed up code to create each shape details box and deletion is now recursive. Also removed 3D view until we are ready to implement it. It's usuable but confusing without the 3D view. Re #451
Gigg, Martyn Anthony authoredCreateSampleShapeDialog - Tidyed up code to create each shape details box and deletion is now recursive. Also removed 3D view until we are ready to implement it. It's usuable but confusing without the 3D view. Re #451
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CustomDialogs.pro 1.31 KiB
#--------------------------------
# The CustomDialogs library -
# MantidQtCustomDialogs
#--------------------------------
TEMPLATE = lib
# Import the global config file
include(../mantidqt.pri)
unix:system(mkdir '"$$MANTIDQTINCLUDES/MantidQtCustomDialogs"')
win32:system(mkdir '"$$MANTIDQTINCLUDES\MantidQtCustomDialogs"')
# Need to link with the API
unix:LIBS += -L$$TOPBUILDDIR/lib -lMantidQtAPI
win32:LIBS += "$$TOPBUILDDIR\lib\MantidQtAPI.lib"
#------------------------
# Source fies
#------------------------
HEADERDIR = inc
SRCDIR = src
SOURCES = \
$$SRCDIR/LoadRawDialog.cpp \
$$SRCDIR/LOQScriptInputDialog.cpp \
$$SRCDIR/CreateSampleShapeDialog.cpp \
$$SRCDIR/SampleShapeHelpers.cpp
HEADERS = \
$$HEADERDIR/LoadRawDialog.h \
$$HEADERDIR/LOQScriptInputDialog.h \
$$HEADERDIR/CreateSampleShapeDialog.h \
$$HEADERDIR/SampleShapeHelpers.h
UI_DIR = $$HEADERDIR
FORMS = \
$$HEADERDIR/LOQScriptInputDialog.ui \
$$HEADERDIR/CreateSampleShapeDialog.ui
UI_HEADERS_DIR = "$$MANTIDQTINCLUDES/MantidQtCustomDialogs"
TARGET = MantidQtCustomDialogs
unix:headercopy.commands = cd $$HEADERDIR && $(COPY) *.h '"$$MANTIDQTINCLUDES/MantidQtCustomDialogs"'
win32:headercopy.commands = cd $$HEADERDIR && $(COPY) *.h '"$$MANTIDQTINCLUDES\MantidQtCustomDialogs"'
PRE_TARGETDEPS = headercopy
QMAKE_EXTRA_TARGETS += headercopy