mirror of https://github.com/AxioDL/boo.git
initial CGL stubs; directory layout
This commit is contained in:
parent
52c73af8a6
commit
fea6b56eab
12
IContext.cpp
12
IContext.cpp
|
@ -1,12 +0,0 @@
|
||||||
#include "CContext.hpp"
|
|
||||||
|
|
||||||
CContext::CContext()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
CContext::~CContext()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
#ifndef CCGLCONTEXT_HPP
|
||||||
|
#define CCGLCONTEXT_HPP
|
||||||
|
|
||||||
|
#include "IContext.hpp"
|
||||||
|
|
||||||
|
class CCGLContext final : public IContext
|
||||||
|
{
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // CCGLCONTEXT_HPP
|
|
@ -0,0 +1,16 @@
|
||||||
|
#ifndef BOO_HPP
|
||||||
|
#define BOO_HPP
|
||||||
|
|
||||||
|
#include "IContext.hpp"
|
||||||
|
|
||||||
|
#if defined(_WIN32)
|
||||||
|
#error "No support for WGL"
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
#include "CCGLContext.hpp"
|
||||||
|
typedef CCGLContext CContext;
|
||||||
|
#elif __linux__
|
||||||
|
#include "CGLXContext.hpp"
|
||||||
|
typedef CGLXContext CContext;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // BOO_HPP
|
|
@ -0,0 +1,8 @@
|
||||||
|
HEADERS += \
|
||||||
|
$$PWD/include/boo.hpp \
|
||||||
|
$$PWD/include/IContext.hpp
|
||||||
|
|
||||||
|
SOURCES += \
|
||||||
|
$$PWD/src/CCGLContext.cpp
|
||||||
|
|
||||||
|
INCLUDEPATH += $$PWD/include
|
|
@ -1,5 +1,2 @@
|
||||||
HEADERS += \
|
include(libBoo.pri)
|
||||||
IContext.hpp
|
include(test/test.pri)
|
||||||
|
|
||||||
SOURCES += \
|
|
||||||
IContext.cpp
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
SOURCES += \
|
||||||
|
$$PWD/main.cpp
|
Loading…
Reference in New Issue