boo/libBoo.pri

33 lines
652 B
Plaintext
Raw Normal View History

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-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
2015-04-18 23:56:57 +00:00
unix:!macx:HEADERS += \
2015-04-18 23:36:57 +00:00
$$PWD/include/CGLXContext.hpp
2015-04-18 23:56:57 +00:00
2015-04-18 22:52:50 +00:00
mac:HEADERS += \
2015-04-18 23:36:57 +00:00
$$PWD/include/CCGLContext.hpp
2015-04-18 22:52:50 +00:00
win32:HEADERS += \
2015-04-18 23:56:57 +00:00
$$PWD/include/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/CCGLContext.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-18 22:52:50 +00:00
mac:OBJECTIVE_SOURCES += \
$$PWD/src/CCGLCocoaView.mm
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