Files
bx/scripts/bin2c.lua
Branimir Karadžić a7d088ae9c Added amalgamated build.
2017-02-11 09:55:38 -08:00

33 lines
433 B
Lua

--
-- Copyright 2010-2017 Branimir Karadzic. All rights reserved.
-- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
--
project "bin2c"
kind "ConsoleApp"
includedirs {
"../include",
}
files {
"../tools/bin2c/**.cpp",
"../tools/bin2c/**.h",
}
links {
"bx",
}
configuration { "mingw-*" }
targetextension ".exe"
configuration { "linux-*" }
links {
"pthread",
}
configuration {}
strip()