tizendeployqt.pro 438 B

123456789101112131415161718
  1. option(host_build)
  2. CONFIG += console
  3. # This decreases the binary size for tools if statically linked
  4. QMAKE_LFLAGS += $$QMAKE_LFLAGS_GCSECTIONS
  5. host_build: QT -= gui core core-private xml # no host tool will ever use gui
  6. host_build: QT += bootstrap-private
  7. SOURCES += \
  8. main.cpp
  9. # Required for declarations of popen/pclose on Windows
  10. windows: QMAKE_CXXFLAGS += -U__STRICT_ANSI__
  11. target.path = $$[QT_HOST_BINS]
  12. INSTALLS += target