2013-05-17 19:39:08 -07:00
|
|
|
--
|
2024-01-14 01:56:36 -08:00
|
|
|
-- Copyright 2010-2024 Branimir Karadzic. All rights reserved.
|
2022-01-15 11:59:06 -08:00
|
|
|
-- License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
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 {
|
2015-02-27 15:44:24 -08:00
|
|
|
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 {
|
2019-04-13 16:07:06 +02:00
|
|
|
path.join(BGFX_DIR, "3rdparty/meshoptimizer/src/**.cpp"),
|
|
|
|
path.join(BGFX_DIR, "3rdparty/meshoptimizer/src/**.h"),
|
2020-03-28 20:06:03 -07:00
|
|
|
path.join(BGFX_DIR, "src/vertexlayout.**"),
|
2015-02-27 15:44:24 -08:00
|
|
|
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
|
|
|
|
2021-10-25 18:59:32 -07:00
|
|
|
using_bx();
|
2017-01-08 15:55:14 -08:00
|
|
|
|
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
|
|
|
|
2020-12-31 18:17:39 -08:00
|
|
|
configuration { "osx*" }
|
2013-08-04 20:18:33 -07:00
|
|
|
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()
|