test_notebook.pro 863 B

12345678910111213141516171819202122232425262728293031323334353637
  1. include($$PWD/../../common.pri)
  2. QT += sql
  3. TARGET = test_notebook
  4. TEMPLATE = app
  5. SRC_FOLDER = $$PWD/../../../src
  6. CORE_FOLDER = $$SRC_FOLDER/core
  7. INCLUDEPATH *= $$SRC_FOLDER
  8. LIBS_FOLDER = $$PWD/../../../libs
  9. include($$LIBS_FOLDER/vtextedit/src/editor/editor_export.pri)
  10. include($$LIBS_FOLDER/vtextedit/src/libs/syntax-highlighting/syntax-highlighting_export.pri)
  11. include($$CORE_FOLDER/core.pri)
  12. include($$SRC_FOLDER/widgets/widgets.pri)
  13. include($$SRC_FOLDER/utils/utils.pri)
  14. include($$SRC_FOLDER/export/export.pri)
  15. include($$SRC_FOLDER/search/search.pri)
  16. include($$SRC_FOLDER/snippet/snippet.pri)
  17. include($$SRC_FOLDER/imagehost/imagehost.pri)
  18. SOURCES += \
  19. dummynode.cpp \
  20. dummynotebook.cpp \
  21. test_notebook.cpp \
  22. testnotebookdatabase.cpp
  23. HEADERS += \
  24. dummynode.h \
  25. dummynotebook.h \
  26. test_notebook.h \
  27. testnotebookdatabase.h