Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. QT += core gui widgets
  2.  
  3. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  4.  
  5. CONFIG += c++11
  6. # console
  7. #OUTPUT += console
  8.  
  9. # The following define makes your compiler emit warnings if you use
  10. # any Qt feature that has been marked deprecated (the exact warnings
  11. # depend on your compiler). Please consult the documentation of the
  12. # deprecated API in order to know how to port your code away from it.
  13. DEFINES += QT_DEPRECATED_WARNINGS
  14.  
  15. # You can also make your code fail to compile if it uses deprecated APIs.
  16. # In order to do so, uncomment the following line.
  17. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  18. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  19.  
  20. SOURCES += \
  21. main.cpp \
  22. mainwindow.cpp
  23.  
  24. HEADERS += \
  25. MouseInteractorStyleShiftAndControl.h \
  26. mainwindow.h
  27.  
  28. FORMS += \
  29. mainwindow.ui
  30.  
  31. QMAKE_CXXFLAGS += -openmp
  32. QMAKE_LFLAGS += -openmp
  33.  
  34. INCLUDEPATH += "C:\Program Files (x86)\ITK\include\ITK-5.0"
  35. INCLUDEPATH += "C:\Program Files (x86)\VTK\include\vtk-8.2"
  36. INCLUDEPATH += "C:\Program Files (x86)\VTK\lib"
  37. INCLUDEPATH += $QTDIR/include/QtGui
  38.  
  39. # Default rules for deployment.
  40. qnx: target.path = /tmp/$${TARGET}/bin
  41. else: unix:!android: target.path = /opt/$${TARGET}/bin
  42. !isEmpty(target.path): INSTALLS += target
  43.  
  44. INCLUDEPATH += $$PWD/'../../Program Files (x86)/VTK/include'
  45. DEPENDPATH += $$PWD/'../../Program Files (x86)/VTK/include'
  46.  
  47.  
  48. unix|win32: LIBS += -L$$PWD/'../../Program Files (x86)/VTK/lib/' -lvtkInteractionStyle-8.2 -lvtkInteractionImage-8.2 -lvtkInteractionWidgets-8.2 -lvtkCommonCore-8.2 -lvtkCommonColor-8.2 -lvtkRenderingVolume-8.2 -lvtkRenderingVolumeOpenGL2-8.2 -lvtkRenderingCore-8.2 -lvtkRenderingFreeType-8.2 -lvtkImagingCore-8.2 -lvtkCommonDataModel-8.2 -lvtkFiltersCore-8.2 -lvtkFiltersParallel-8.2 -lvtkRenderingAnnotation-8.2 -lvtkFiltersSources-8.2 -lvtkFiltersExtraction-8.2 -lvtkGUISupportQt-8.2 -lvtkIOImage-8.2 -lvtkCommonExecutionModel-8.2 -lvtkRenderingVolumeOpenGL2-8.2 -lvtkRenderingVolume-8.2 -lvtkRenderingOpenGL2-8.2 -lvtkRenderingContextOpenGL2-8.2
  49.  
  50. unix|win32: LIBS += -L$$PWD/'../../Program Files (x86)/ITK/lib/' -lITKCommon-5.0 -litkgdcmCommon-5.0 -lITKDICOMParser-5.0 -lITKVtkGlue-5.0 -lITKVTK-5.0 -lITKIOVTK-5.0 -lITKIOGDCM-5.0 -lITKSpatialObjects-5.0 -litksys-5.0 -lITKTransformFactory-5.0 -lITKSpatialObjects-5.0 -litkvnl-5.0 -litkvnl_algo-5.0 -litkv3p_netlib-5.0 -lITKIOImageBase-5.0 -litkgdcmMSFF-5.0 -litkgdcmjpeg8-5.0 -litkgdcmjpeg12-5.0 -litkgdcmjpeg16-5.0 -litkgdcmMEXD-5.0 -litkgdcmMSFF-5.0 -litkgdcmopenjp2-5.0 -litkgdcmsocketxx-5.0 -litkgdcmDICT-5.0 -lofstd -litksys-5.0 -litkgdcmDSED-5.0 -litkzlib-5.0 -litkgdcmIOD-5.0 -lITKEXPAT-5.0 -litkgdcmcharls-5.0
  51.  
  52. win32: LIBS += -lRpcrt4 -lws2_32 -lAdvapi32 -lopengl32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement