2015-04-18 21:45:34 +00:00
|
|
|
HEADERS += \
|
|
|
|
$$PWD/include/boo.hpp \
|
2015-04-18 21:57:44 +00:00
|
|
|
$$PWD/include/IContext.hpp \
|
2015-04-18 22:52:50 +00:00
|
|
|
$$PWD/include/ISurface.hpp \
|
|
|
|
$$PWD/include/IRetraceWaiter.hpp
|
|
|
|
|
|
|
|
unix:HEADERS += \
|
|
|
|
$$PWD/include/CGLXContext.hpp \
|
|
|
|
|
|
|
|
mac:HEADERS += \
|
2015-04-18 21:57:44 +00:00
|
|
|
$$PWD/include/CCGLContext.hpp \
|
2015-04-18 22:52:50 +00:00
|
|
|
|
|
|
|
win32:HEADERS += \
|
|
|
|
$$PWD/include/CWGLContext.hpp \
|
|
|
|
|
2015-04-18 21:45:34 +00:00
|
|
|
|
|
|
|
SOURCES += \
|
2015-04-18 22:52:50 +00:00
|
|
|
$$PWD/src/CSurface.cpp \
|
|
|
|
$$PWD/src/CCGLContext.cpp \
|
|
|
|
$$PWD/src/CRetraceWaiter.cpp
|
|
|
|
|
|
|
|
unix:SOURCES += \
|
|
|
|
$$PWD/src/CGLXContext.cpp \
|
|
|
|
|
|
|
|
mac:OBJECTIVE_SOURCES += \
|
|
|
|
$$PWD/src/CCGLCocoaView.mm
|
|
|
|
|
|
|
|
win32:SOURCES += \
|
|
|
|
$$PWD/src/CWGLContext.cpp \
|
2015-04-18 21:45:34 +00:00
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD/include
|