mirror of https://github.com/AxioDL/boo.git
32 lines
610 B
Plaintext
32 lines
610 B
Plaintext
HEADERS += \
|
|
$$PWD/include/boo.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 \
|
|
|
|
win32:HEADERS += \
|
|
$$PWD/include/CWGLContext.hpp \
|
|
|
|
|
|
SOURCES += \
|
|
$$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
|