Created
March 18, 2015 23:30
-
-
Save lettergram/94ce3c59fc5efa4163bf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#------------------------------------------------- | |
# | |
# Project created by QtCreator 2014-06-06T17:51:40 | |
# | |
#------------------------------------------------- | |
QT += core gui | |
QT += webkitwidgets | |
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets | |
TARGET = SeleniumFactory | |
TEMPLATE = app | |
SOURCES += main.cpp\ | |
mainwindow.cpp | |
HEADERS += mainwindow.h | |
FORMS += mainwindow.ui |
This code is particular for a Qt framework application. This code basically builds the application similar to a make file... If you're just learning C++ I would suspect Qt may not be the best idea.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Could you please explain this code. I am a beginner and I am learning C++.