mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-13 11:29:29 +02:00
Components, OpenGL: Fix building on Windows
git-svn-id: trunk@26049 -
This commit is contained in:
parent
258d5c78fc
commit
d9764005d1
@ -37,6 +37,7 @@
|
||||
</Item4>
|
||||
<Item5>
|
||||
<Filename Value="glqtcontext.pas"/>
|
||||
<AddToUsesPkgSection Value="False"/>
|
||||
<UnitName Value="glqtcontext"/>
|
||||
</Item5>
|
||||
</Files>
|
||||
|
@ -1,21 +1,21 @@
|
||||
{ This file was automatically created by Lazarus. Do not edit!
|
||||
This source is only used to compile and install the package.
|
||||
{ Этот файл был автоматически создан Lazarus. Не редактировать!
|
||||
Исходный код используется только для компиляции и установки пакета.
|
||||
}
|
||||
|
||||
unit lazopenglcontext;
|
||||
unit lazopenglcontext;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
OpenGLContext, GLQTContext, LazarusPackageIntf;
|
||||
OpenGLContext, LazarusPackageIntf;
|
||||
|
||||
implementation
|
||||
|
||||
procedure Register;
|
||||
procedure Register;
|
||||
begin
|
||||
RegisterUnit('OpenGLContext', @OpenGLContext.Register);
|
||||
end;
|
||||
RegisterUnit('OpenGLContext',@OpenGLContext.Register);
|
||||
end;
|
||||
|
||||
initialization
|
||||
RegisterPackage('LazOpenGLContext', @Register);
|
||||
RegisterPackage('LazOpenGLContext',@Register);
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user