mirror of
https://github.com/AxioDL/boo.git
synced 2025-08-04 03:05:54 +00:00
28 lines
542 B
Plaintext
28 lines
542 B
Plaintext
!contains(CONFIG,c++11):CONFIG += C++11
|
|
|
|
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 \
|
|
|
|
unix:SOURCES += \
|
|
$$PWD/src/CGLXContext.cpp \
|
|
|
|
mac:OBJECTIVE_SOURCES += \
|
|
$$PWD/src/CCGLCocoaView.mm
|
|
|
|
win32:SOURCES += \
|
|
$$PWD/src/CWGLContext.cpp \
|
|
|
|
INCLUDEPATH += $$PWD/include
|