bgfx/scripts/geometryc.lua

51 lines
1.0 KiB
Lua
Raw Normal View History

2013-05-17 19:39:08 -07:00
--
2018-01-01 11:16:06 -08:00
-- Copyright 2010-2018 Branimir Karadzic. All rights reserved.
2016-01-01 00:11:04 -08:00
-- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2013-05-17 19:39:08 -07:00
--
2013-02-21 21:13:56 -08:00
project "geometryc"
2017-11-28 23:28:55 -08:00
uuid (os.uuid("geometryc"))
2013-02-21 21:13:56 -08:00
kind "ConsoleApp"
includedirs {
path.join(BX_DIR, "include"),
path.join(BGFX_DIR, "include"),
path.join(BGFX_DIR, "3rdparty"),
path.join(BGFX_DIR, "examples/common"),
2013-02-21 21:13:56 -08:00
}
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.**"),
2013-02-21 21:13:56 -08:00
}
2013-04-28 14:08:59 -07:00
2017-01-08 15:55:14 -08:00
links {
"bx",
}
2016-04-30 11:08:56 -07:00
configuration { "mingw-*" }
targetextension ".exe"
2017-11-28 23:28:55 -08:00
links {
"psapi",
}
2016-04-30 11:08:56 -07:00
2013-08-04 20:18:33 -07:00
configuration { "osx" }
links {
"Cocoa.framework",
}
2017-11-28 23:28:55 -08:00
configuration { "vs20*" }
2017-11-15 21:31:24 -08:00
links {
"psapi",
}
2016-04-30 11:08:56 -07:00
configuration {}
2013-04-28 14:08:59 -07:00
strip()