Skip to content

Instantly share code, notes, and snippets.

@TheOpenDevProject
Created June 7, 2015 13:09
Show Gist options
  • Save TheOpenDevProject/0286e287e4b5043273ed to your computer and use it in GitHub Desktop.
Save TheOpenDevProject/0286e287e4b5043273ed to your computer and use it in GitHub Desktop.
SFML Setup
#-------------------------------------------------
#
# 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