Advertisement
Mark2020H

Project file for GUI SSH Generator QT Project

May 22nd, 2023
1,669
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* This  code is  delivered in 4 or more parts and provides a  GUI mechanism  for  generating ssh keys using QT  C++
  2.  * For Debian 12  65 bit The entire project can also be downloaded  via  GIT-HUB for this whom want to know more and  would  
  3.  * Like to  re compile or gain  ideas as to how to do some of this
  4.  * All instructions plus  pre compiled code for  Debian 12  are available at git-hub  
  5.  * @ this address https://github.com/markh2016/GUISSHGenerator.git
  6.  * This is Part 5 The SSHGEN.pro file  MD Harrington London UK 22/05/2023
  7. */
  8.  
  9. QT       += core gui
  10.  
  11. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  12.  
  13. CONFIG += c++17
  14.  
  15. # You can make your code fail to compile if it uses deprecated APIs.
  16. # In order to do so, uncomment the following line.
  17. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
  18.  
  19. SOURCES += \
  20.     main.cpp \
  21.     dialog.cpp
  22.  
  23. HEADERS += \
  24.     dialog.h
  25.  
  26. FORMS += \
  27.     dialog.ui
  28.  
  29. # Default rules for deployment.
  30. qnx: target.path = /tmp/$${TARGET}/bin
  31. else: unix:!android: target.path = /opt/$${TARGET}/bin
  32. !isEmpty(target.path): INSTALLS += target
  33.  
  34.  
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement