2015-04-18 22:15:17 +00:00
|
|
|
!contains(CONFIG,c++11):CONFIG += C++11
|
|
|
|
|
2015-04-18 21:45:34 +00:00
|
|
|
HEADERS += \
|
|
|
|
$$PWD/include/boo.hpp \
|
2015-04-19 00:09:24 +00:00
|
|
|
$$PWD/include/IGraphicsContext.hpp \
|
2015-04-18 22:52:50 +00:00
|
|
|
$$PWD/include/ISurface.hpp \
|
|
|
|
$$PWD/include/IRetraceWaiter.hpp
|
|
|
|
|
2015-04-18 23:56:57 +00:00
|
|
|
unix:!macx:HEADERS += \
|
2015-04-19 00:29:44 +00:00
|
|
|
$$PWD/include/x11/CGLXContext.hpp
|
2015-04-18 23:56:57 +00:00
|
|
|
|
2015-04-19 00:29:44 +00:00
|
|
|
macx:HEADERS += \
|
|
|
|
$$PWD/include/mac/CCGLContext.hpp
|
2015-04-18 22:52:50 +00:00
|
|
|
|
|
|
|
win32:HEADERS += \
|
2015-04-19 00:29:44 +00:00
|
|
|
$$PWD/include/win/CWGLContext.hpp
|
2015-04-18 22:52:50 +00:00
|
|
|
|
2015-04-18 23:56:57 +00:00
|
|
|
SOURCES += \
|
|
|
|
$$PWD/src/CSurface.cpp \
|
|
|
|
$$PWD/src/CRetraceWaiter.cpp
|
2015-04-18 22:52:50 +00:00
|
|
|
|
2015-04-18 23:56:57 +00:00
|
|
|
unix:!macx:SOURCES += \
|
2015-04-18 23:36:57 +00:00
|
|
|
$$PWD/src/CGLXContext.cpp
|
2015-04-18 23:56:57 +00:00
|
|
|
|
2015-04-19 00:29:44 +00:00
|
|
|
macx:SOURCES += \
|
|
|
|
$$PWD/src/mac/CCGLContext.cpp
|
|
|
|
|
|
|
|
macx:OBJECTIVE_SOURCES += \
|
|
|
|
$$PWD/src/mac/CCGLCocoaView.mm
|
2015-04-18 22:52:50 +00:00
|
|
|
|
|
|
|
win32:SOURCES += \
|
2015-04-18 23:56:57 +00:00
|
|
|
$$PWD/src/CWGLContext.cpp
|
2015-04-18 21:45:34 +00:00
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD/include
|