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

137 lines
1.9 KiB
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
--
2017-04-11 08:16:10 +02:00
newoption {
trigger = "with-amalgamated",
description = "Enable amalgamated build.",
}
newoption {
trigger = "with-crtnone",
description = "Enable build without CRT.",
}
2016-08-29 22:31:11 +02:00
solution "bx"
configurations {
"Debug",
"Release",
}
platforms {
"x32",
"x64",
"Native", -- for targets where bitness is not specified
}
language "C++"
BX_DIR = path.getabsolute("..")
2018-02-03 17:39:28 +01:00
BX_BUILD_DIR = path.join(BX_DIR, ".build")
BX_THIRD_PARTY_DIR = path.join(BX_DIR, "3rdparty")
2016-08-29 22:31:11 +02:00
dofile "toolchain.lua"
toolchain(BX_BUILD_DIR, BX_THIRD_PARTY_DIR)
function copyLib()
end
dofile "bx.lua"
dofile "bin2c.lua"
2018-02-03 17:39:28 +01:00
dofile "lemon.lua"
2016-08-29 22:31:11 +02:00
project "bx.test"
kind "ConsoleApp"
debugdir (path.join(BX_DIR, "tests"))
removeflags {
"NoExceptions",
}
includedirs {
path.join(BX_DIR, "include"),
BX_THIRD_PARTY_DIR,
}
files {
2016-11-10 21:53:08 +01:00
path.join(BX_DIR, "tests/*_test.cpp"),
2017-04-11 08:16:10 +02:00
path.join(BX_DIR, "tests/*.h"),
2016-11-10 21:53:08 +01:00
path.join(BX_DIR, "tests/dbg.*"),
}
2017-04-11 08:16:10 +02:00
links {
"bx",
}
2016-11-10 21:53:08 +01:00
configuration { "vs* or mingw*" }
links {
"psapi",
}
configuration { "android*" }
targetextension ".so"
linkoptions {
"-shared",
}
configuration { "linux-*" }
links {
"pthread",
}
configuration { "osx" }
links {
"Cocoa.framework",
}
configuration {}
strip()
project "bx.bench"
kind "ConsoleApp"
debugdir (path.join(BX_DIR, "tests"))
includedirs {
path.join(BX_DIR, "include"),
BX_THIRD_PARTY_DIR,
}
files {
path.join(BX_DIR, "tests/*_bench.cpp"),
path.join(BX_DIR, "tests/*_bench.h"),
path.join(BX_DIR, "tests/dbg.*"),
2016-08-29 22:31:11 +02:00
}
2017-04-11 08:16:10 +02:00
links {
"bx",
}
2016-08-29 22:31:11 +02:00
configuration { "vs* or mingw*" }
links {
"psapi",
}
configuration { "android*" }
targetextension ".so"
linkoptions {
"-shared",
}
configuration { "linux-*" }
links {
"pthread",
}
configuration { "osx" }
links {
"Cocoa.framework",
}
configuration {}
strip()