summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/scripts/texturec.lua
blob: 729e545dd91a6aad89692636dc600620749d02c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--
-- Copyright 2010-2015 Branimir Karadzic. All rights reserved.
-- License: http://www.opensource.org/licenses/BSD-2-Clause
--

project "texturec"
	uuid "838801ee-7bc3-11e1-9f19-eae7d36e7d26"
	kind "ConsoleApp"

	includedirs {
		path.join(BX_DIR, "include"),
		path.join(BGFX_DIR, "include"),
		path.join(BGFX_DIR, "src"),
	}

	files {
		path.join(BGFX_DIR, "src/image.*"),
		path.join(BGFX_DIR, "tools/texturec/**.cpp"),
		path.join(BGFX_DIR, "tools/texturec/**.h"),
	}

	links {
--		"bgfx",
	}

	configuration { "osx" }
		links {
			"Cocoa.framework",
		}