2016-08-29 22:31:11 +02:00
|
|
|
--
|
2017-04-11 08:16:10 +02:00
|
|
|
-- Copyright 2010-2017 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",
|
|
|
|
}
|
|
|
|
|
2016-08-29 22:31:11 +02:00
|
|
|
configuration {}
|
|
|
|
|
|
|
|
strip()
|