Created
June 7, 2015 13:09
-
-
Save TheOpenDevProject/0286e287e4b5043273ed to your computer and use it in GitHub Desktop.
SFML Setup
This file contains hidden or 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 2015-06-07T12:17:11 | |
# | |
#------------------------------------------------- | |
QT += core | |
QT -= gui | |
TARGET = GameName | |
CONFIG += CONSOLE | |
CONFIG -= app_bundle | |
CONFIG += c++14 | |
LIBS += -L/home/namehere/libs/SFML/lib | |
CONFIG(release, debug|release): LIBS += -lsfml-audio -lsfml-graphics -lsfml-network -lsfml-window -lsfml-system | |
CONFIG(debug, debug|release): LIBS += -lsfml-audio -lsfml-graphics -lsfml-network -lsfml-window -lsfml-system | |
INCLUDEPATH += /home/namehere/libs/SFML/include | |
DEPENDPATH += /home/namehere/libs/SFML/include | |
TEMPLATE = app | |
SOURCES += main.cpp \ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment