39 lines
946 B
Lua
39 lines
946 B
Lua
|
--
|
||
|
-- Copyright 2010-2016 Branimir Karadzic. All rights reserved.
|
||
|
-- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
||
|
--
|
||
|
|
||
|
project "geometryc"
|
||
|
uuid "8794dc3a-2d57-11e2-ba18-368d09e48fda"
|
||
|
kind "ConsoleApp"
|
||
|
|
||
|
includedirs {
|
||
|
path.join(BX_DIR, "include"),
|
||
|
path.join(BGFX_DIR, "include"),
|
||
|
path.join(BGFX_DIR, "3rdparty"),
|
||
|
path.join(BGFX_DIR, "examples/common"),
|
||
|
}
|
||
|
|
||
|
files {
|
||
|
path.join(BGFX_DIR, "3rdparty/forsyth-too/**.cpp"),
|
||
|
path.join(BGFX_DIR, "3rdparty/forsyth-too/**.h"),
|
||
|
path.join(BGFX_DIR, "3rdparty/ib-compress/**.cpp"),
|
||
|
path.join(BGFX_DIR, "3rdparty/ib-compress/**.h"),
|
||
|
path.join(BGFX_DIR, "src/vertexdecl.**"),
|
||
|
path.join(BGFX_DIR, "tools/geometryc/**.cpp"),
|
||
|
path.join(BGFX_DIR, "tools/geometryc/**.h"),
|
||
|
path.join(BGFX_DIR, "examples/common/bounds.**"),
|
||
|
}
|
||
|
|
||
|
configuration { "mingw-*" }
|
||
|
targetextension ".exe"
|
||
|
|
||
|
configuration { "osx" }
|
||
|
links {
|
||
|
"Cocoa.framework",
|
||
|
}
|
||
|
|
||
|
configuration {}
|
||
|
|
||
|
strip()
|