summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bx/scripts/bin2c.lua
blob: 82b3a7a17711a5f47b0b6fe104b64a46107a4073 (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
--
-- Copyright 2010-2016 Branimir Karadzic. All rights reserved.
-- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
--

project "bin2c"
	uuid "60eaa654-7d06-11e4-be8e-880965202986"
	kind "ConsoleApp"

	includedirs {
		"../include",
	}

	files {
		"../tools/bin2c/**.cpp",
		"../tools/bin2c/**.h",
	}

	configuration { "mingw-*" }
		targetextension ".exe"

	configuration {}

	strip()