summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bx/scripts/bx.lua
blob: 8cae8b419e89f487e8539bb4e4f67f5766b305a8 (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
--
-- Copyright 2010-2016 Branimir Karadzic. All rights reserved.
-- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
--
 
project "bx"
	uuid "4db0b09e-d6df-11e1-a0ec-65ccdd6a022f"
	kind "StaticLib"

	configuration { "osx or ios" }
		-- OSX ar doesn't like creating archive without object files
		-- here is object file...
		prebuildcommands {
			"@echo \"void dummy() {}\" > /tmp/dummy.cpp",
		}
		files {
			"/tmp/dummy.cpp",
		}

	configuration {}

	files {
		"../include/**.h",
		"../include/**.inl",
	}