Hi everyboy,

OS: WINXP
Compiler: .Net 2003
QT: 3.4

i am trying to make the MAKEFILE of qwtplot3d.pro and i was not able because i get this error message:
NMAKE : fatal error U1064: MAKEFILE not found and no target specified
Stop.

Can somebody see whats wrong in this .pro file?

Thanks

Qt Code:
  1. # pro file for building the makefile for qwtplot3d
  2. #
  3.  
  4.  
  5. TARGET = qwtplot3d
  6. TEMPLATE = lib
  7. CONFIG += qt warn_on opengl thread zlib
  8. MOC_DIR = tmp
  9. OBJECTS_DIR = tmp
  10. INCLUDEPATH = include
  11. DEPENDPATH = include src
  12. DESTDIR = lib
  13. #DESTDIR = ../../../lib
  14. QT += opengl
  15.  
  16. win32:TEMPLATE = vclib
  17. win32:CONFIG += dll exceptions
  18. win32:dll:DEFINES += QT_DLL QWT3D_DLL QWT3D_MAKEDLL
  19. win32:QMAKE_CXXFLAGS += $$QMAKE_CFLAGS_STL
  20.  
  21. # Comment the next line, if you have zlib on your windows system
  22. win32:CONFIG -= zlib
  23.  
  24. linux-g++:TMAKE_CXXFLAGS += -fno-exceptions
  25. unix:VERSION = 0.2.6
  26.  
  27. # Input
  28. SOURCES += src/qwt3d_axis.cpp \
  29. src/qwt3d_color.cpp \
  30. src/qwt3d_coordsys.cpp \
  31. src/qwt3d_drawable.cpp \
  32. src/qwt3d_mousekeyboard.cpp \
  33. src/qwt3d_movements.cpp \
  34. src/qwt3d_lighting.cpp \
  35. src/qwt3d_colorlegend.cpp \
  36. src/qwt3d_plot.cpp \
  37. src/qwt3d_label.cpp \
  38. src/qwt3d_types.cpp \
  39. src/qwt3d_enrichment_std.cpp \
  40. src/qwt3d_autoscaler.cpp \
  41. src/qwt3d_io_reader.cpp \
  42. src/qwt3d_io.cpp \
  43. src/qwt3d_scale.cpp
  44.  
  45. SOURCES += src/qwt3d_gridmapping.cpp \
  46. src/qwt3d_parametricsurface.cpp \
  47. src/qwt3d_function.cpp
  48.  
  49. SOURCES += src/qwt3d_surfaceplot.cpp \
  50. src/qwt3d_gridplot.cpp \
  51. src/qwt3d_meshplot.cpp
  52.  
  53.  
  54. HEADERS += include/qwt3d_color.h \
  55. include/qwt3d_global.h \
  56. include/qwt3d_types.h \
  57. include/qwt3d_axis.h \
  58. include/qwt3d_coordsys.h \
  59. include/qwt3d_drawable.h \
  60. include/qwt3d_helper.h \
  61. include/qwt3d_label.h \
  62. include/qwt3d_openglhelper.h \
  63. include/qwt3d_colorlegend.h \
  64. include/qwt3d_plot.h \
  65. include/qwt3d_enrichment.h \
  66. include/qwt3d_enrichment_std.h \
  67. include/qwt3d_autoscaler.h \
  68. include/qwt3d_autoptr.h \
  69. include/qwt3d_io.h \
  70. include/qwt3d_io_reader.h \
  71. include/qwt3d_scale.h \
  72. include/qwt3d_portability.h
  73.  
  74. HEADERS += include/qwt3d_mapping.h \
  75. include/qwt3d_gridmapping.h \
  76. include/qwt3d_parametricsurface.h \
  77. include/qwt3d_function.h
  78.  
  79. HEADERS += include/qwt3d_surfaceplot.h \
  80. include/qwt3d_volumeplot.h \
  81. include/qwt3d_graphplot.h \
  82. include/qwt3d_multiplot.h
  83.  
  84. # gl2ps support
  85. HEADERS+=3rdparty/gl2ps/gl2ps.h \
  86. include/qwt3d_io_gl2ps.h
  87.  
  88. SOURCES+=src/qwt3d_io_gl2ps.cpp \
  89. 3rdparty/gl2ps/gl2ps.c
  90.  
  91. # zlib support for gl2ps
  92. zlib {
  93. DEFINES += GL2PS_HAVE_ZLIB
  94. win32:LIBS += zlib.lib
  95. unix:LIBS += -lz
  96. }
To copy to clipboard, switch view to plain text mode