BinOM.pro 640 B

12345678910111213141516171819202122232425262728293031
  1. CONFIG -= qt
  2. include("binom.pri")
  3. linux-g++ | linux-g++-64 | linux-g++-32 {
  4. CONFIG += c++17 console
  5. LIBS += -lstdc++fs -lpthread;
  6. }
  7. win32 {
  8. CONFIG += c++17 console
  9. LIBS += -lstdc++fs -lpthread;
  10. QMAKE_LFLAGS = -Wl,-enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc
  11. QMAKE_LFLAGS_EXCEPTIONS_ON = -mthreads
  12. }
  13. SOURCES += \
  14. test.cpp
  15. HEADERS += \
  16. tests/file_node_visitor_test.h \
  17. tests/heap_blocks_test.h \
  18. tests/memory_manager_test.h \
  19. tests/multithreading_test.h \
  20. tests/query_test.h \
  21. tests/var_test.h
  22. SUBDIRS += \
  23. BinOM_tools.pro