Switching to premake. Probably with disasterous consequences.
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
|
||||
#include "third_party/GL/glew.h"
|
||||
|
||||
typedef struct GLEWContextStruct GLEWContext;
|
||||
extern "C" GLEWContext* glewGetContext();
|
||||
|
||||
#if XE_PLATFORM_WIN32
|
||||
|
||||
22
src/xenia/ui/gl/premake5.lua
Normal file
22
src/xenia/ui/gl/premake5.lua
Normal file
@@ -0,0 +1,22 @@
|
||||
project_root = "../../../.."
|
||||
include(project_root.."/build_tools")
|
||||
|
||||
group("src")
|
||||
project("xenia-ui-gl")
|
||||
uuid("623300e3-0085-4ccc-af46-d60e88cb43aa")
|
||||
kind("StaticLib")
|
||||
language("C++")
|
||||
links({
|
||||
"elemental-forms",
|
||||
"glew",
|
||||
"xenia-base",
|
||||
"xenia-ui",
|
||||
})
|
||||
defines({
|
||||
"GLEW_STATIC=1",
|
||||
"GLEW_MX=1",
|
||||
})
|
||||
includedirs({
|
||||
project_root.."/third_party/elemental-forms/src",
|
||||
})
|
||||
local_platform_files()
|
||||
18
src/xenia/ui/premake5.lua
Normal file
18
src/xenia/ui/premake5.lua
Normal file
@@ -0,0 +1,18 @@
|
||||
project_root = "../../.."
|
||||
include(project_root.."/build_tools")
|
||||
|
||||
group("src")
|
||||
project("xenia-ui")
|
||||
uuid("d0407c25-b0ea-40dc-846c-82c46fbd9fa2")
|
||||
kind("StaticLib")
|
||||
language("C++")
|
||||
links({
|
||||
"elemental-forms",
|
||||
"xenia-base",
|
||||
})
|
||||
defines({
|
||||
})
|
||||
includedirs({
|
||||
project_root.."/third_party/elemental-forms/src",
|
||||
})
|
||||
local_platform_files()
|
||||
Reference in New Issue
Block a user