engine.build.lua: build OpenGL gfx driver.
This commit is contained in:
parent
4dad1a5d75
commit
038d997421
1 changed files with 5 additions and 0 deletions
|
|
@ -136,6 +136,10 @@ local graphics_module = Module("source/Graphics", {
|
||||||
"GL/CheckError.cpp",
|
"GL/CheckError.cpp",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
local gfxdrv_opengl_module = Module("source/GfxDriver/OpenGL", {
|
||||||
|
"OpenGLDrv.cpp"
|
||||||
|
})
|
||||||
|
|
||||||
local core_module = Module("source/Core", {
|
local core_module = Module("source/Core", {
|
||||||
"String.cpp"
|
"String.cpp"
|
||||||
})
|
})
|
||||||
|
|
@ -174,6 +178,7 @@ local obj = Compile(settings, {
|
||||||
input_module,
|
input_module,
|
||||||
display_module,
|
display_module,
|
||||||
graphics_module,
|
graphics_module,
|
||||||
|
gfxdrv_opengl_module,
|
||||||
core_module,
|
core_module,
|
||||||
math_module,
|
math_module,
|
||||||
game_module,
|
game_module,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue