remove hardcoding in viewer.pro
This commit is contained in:
parent
4604453f5d
commit
734634479a
1 changed files with 2 additions and 8 deletions
|
@ -5,20 +5,14 @@ TEMPLATE = app
|
|||
QT += core gui widgets
|
||||
QT += opengl
|
||||
|
||||
QMAKE_CXX = /opt/llvm/bin/clang++
|
||||
QMAKE_LINK = /opt/llvm/bin/clang++
|
||||
QMAKE_CXX = $$system(mapnik-config --cxx)
|
||||
QMAKE_LINK = $$system(mapnik-config --cxx)
|
||||
QMAKE_CXXFLAGS += $$system(mapnik-config --cxxflags --defines)
|
||||
QMAKE_CXXFLAGS += $$system(mapnik-config --includes --dep-includes)
|
||||
QMAKE_CXXFLAGS += "-I/Users/artem/Projects/skia/trunk/include/core"
|
||||
QMAKE_CXXFLAGS += "-I/Users/artem/Projects/skia/trunk/include/config"
|
||||
QMAKE_CXXFLAGS += "-I/Users/artem/Projects/skia/trunk/include/gpu"
|
||||
## QMAKE_CXXFLAGS += "-I/Users/artem/Projects/skia/trunk/include/gpu/gl"
|
||||
QMAKE_CXXFLAGS += "-I/Users/artem/Projects/skia/trunk/include/utils"
|
||||
|
||||
QMAKE_LFLAGS += $$system(mapnik-config --libs)
|
||||
QMAKE_LFLAGS += $$system(mapnik-config --ldflags --dep-libs)
|
||||
QMAKE_LFLAGS += -lboost_timer
|
||||
QMAKE_LFLAGS += -L/opt/X11/lib
|
||||
QMAKE_LFLAGS += "-framework Cocoa"
|
||||
|
||||
# Input
|
||||
|
|
Loading…
Reference in a new issue