protot/3rdparty/bx/scripts/bin2c.lua

38 lines
497 B
Lua
Raw Normal View History

2016-08-29 22:31:11 +02:00
--
2018-02-03 17:39:28 +01:00
-- Copyright 2010-2018 Branimir Karadzic. All rights reserved.
2016-08-29 22:31:11 +02:00
-- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
--
project "bin2c"
kind "ConsoleApp"
includedirs {
"../include",
}
files {
"../tools/bin2c/**.cpp",
"../tools/bin2c/**.h",
}
2017-04-11 08:16:10 +02:00
links {
"bx",
}
2016-08-29 22:31:11 +02:00
configuration { "mingw-*" }
targetextension ".exe"
2017-04-11 08:16:10 +02:00
configuration { "linux-*" }
links {
"pthread",
}
2018-02-03 17:39:28 +01:00
configuration { "vs20* or mingw*" }
links {
"psapi",
}
2016-08-29 22:31:11 +02:00
configuration {}
strip()