Merge pull request #5 from RetroView/more-stubs

additional stubs
This commit is contained in:
Jack Andersen 2015-04-18 13:09:00 -10:00
commit 0d1fae7aae
7 changed files with 23 additions and 2 deletions

0
include/CWGLContext.hpp Normal file
View File

View File

View File

@ -1,10 +1,31 @@
HEADERS += \ HEADERS += \
$$PWD/include/boo.hpp \ $$PWD/include/boo.hpp \
$$PWD/include/IContext.hpp \ $$PWD/include/IContext.hpp \
$$PWD/include/ISurface.hpp \
$$PWD/include/IRetraceWaiter.hpp
unix:HEADERS += \
$$PWD/include/CGLXContext.hpp \
mac:HEADERS += \
$$PWD/include/CCGLContext.hpp \ $$PWD/include/CCGLContext.hpp \
$$PWD/include/ISurface.hpp
win32:HEADERS += \
$$PWD/include/CWGLContext.hpp \
SOURCES += \ SOURCES += \
$$PWD/src/CCGLContext.cpp $$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 \
INCLUDEPATH += $$PWD/include INCLUDEPATH += $$PWD/include

0
src/CCGLCocoaView.mm Normal file
View File

0
src/CRetraceWaiter.cpp Normal file
View File

0
src/CSurface.cpp Normal file
View File

0
src/CWGLContext.cpp Normal file
View File