mirror of https://github.com/bkaradzic/bgfx
35 lines
809 B
Lua
35 lines
809 B
Lua
--
|
|
-- Copyright 2010-2014 Branimir Karadzic. All rights reserved.
|
|
-- License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
--
|
|
|
|
project "geometryc"
|
|
uuid "8794dc3a-2d57-11e2-ba18-368d09e48fda"
|
|
kind "ConsoleApp"
|
|
|
|
includedirs {
|
|
BX_DIR .. "include",
|
|
BGFX_DIR .. "include",
|
|
BGFX_DIR .. "3rdparty/forsyth-too",
|
|
BGFX_DIR .. "3rdparty/ib-compress",
|
|
BGFX_DIR .. "examples/common",
|
|
}
|
|
|
|
files {
|
|
BGFX_DIR .. "3rdparty/forsyth-too/**.cpp",
|
|
BGFX_DIR .. "3rdparty/forsyth-too/**.h",
|
|
BGFX_DIR .. "3rdparty/ib-compress/**.cpp",
|
|
BGFX_DIR .. "3rdparty/ib-compress/**.h",
|
|
BGFX_DIR .. "src/vertexdecl.**",
|
|
BGFX_DIR .. "tools/geometryc/**.cpp",
|
|
BGFX_DIR .. "tools/geometryc/**.h",
|
|
BGFX_DIR .. "examples/common/bounds.**",
|
|
}
|
|
|
|
configuration { "osx" }
|
|
links {
|
|
"Cocoa.framework",
|
|
}
|
|
|
|
strip()
|