fork download
  1. TEMPLATE = app
  2. CONFIG += qt kinect opencv console
  3. TARGET = XYZ
  4. INCLUDEPATH += .
  5. HEADERS = qpowerpointmod.h
  6. SOURCES = qpowerpointmod.cpp main.cpp
  7.  
  8. CONFIG(debug, debug|release) {
  9. LIBS += "C:\\Development\\xyz_repo\\src\\debug\\nuilib.lib"
  10. INCLUDEPATH += "C:\\Development\\xyz_repo\\src\\"
  11. DESTIR = "C:\\Development\\xyz_repo\\src\\debug\\"
  12. }
  13. CONFIG(release, debug|release) {
  14. LIBS += "C:\\Development\\xyz_repo\\src\\release\\nuilib.lib"
  15. INCLUDEPATH += "C:\\Development\\xyz_repo\\src\\"
  16. DESTIR = "C:\\Development\\xyz_repo\\src\\release\\"
  17. }
  18. kinect {
  19. LIBS += "C:\\Program Files\\Microsoft SDKs\\Kinect\\v1.5\\lib\\x86\\Kinect10.lib"
  20. INCLUDEPATH += "C:\\Program Files\\Microsoft SDKs\\Kinect\\v1.5\\inc"
  21. }
  22.  
  23. opencv {
  24. LIBS += $(OPENCV_DIR)/lib/opencv_core220d.lib
  25. LIBS += $(OPENCV_DIR)/lib/opencv_highgui220d.lib
  26. LIBS += $(OPENCV_DIR)/lib/opencv_video220d.lib
  27. LIBS += $(OPENCV_DIR)/lib/opencv_ml220d.lib
  28. LIBS += $(OPENCV_DIR)/lib/opencv_legacy220d.lib
  29. LIBS += $(OPENCV_DIR)/lib/opencv_imgproc220d.lib
  30. INCLUDEPATH += $(OPENCV_DIR)/include
  31. INCLUDEPATH += $(OPENCV_DIR)/include/opencv
  32. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1: error: expected constructor, destructor, or type conversion before ‘=’ token
prog.cpp:13: error: expected constructor, destructor, or type conversion before ‘(’ token
prog.cpp:18: error: function definition does not declare parameters
prog.cpp:23: error: function definition does not declare parameters
stdout
Standard output is empty