mirror of
https://github.com/holub/mame
synced 2025-05-11 00:28:49 +03:00
25 lines
359 B
Lua
25 lines
359 B
Lua
--
|
|
-- Copyright 2010-2017 Branimir Karadzic. All rights reserved.
|
|
-- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
|
|
--
|
|
|
|
project "bx"
|
|
kind "StaticLib"
|
|
|
|
includedirs {
|
|
"../include",
|
|
}
|
|
|
|
files {
|
|
"../include/**.h",
|
|
"../include/**.inl",
|
|
"../src/**.cpp",
|
|
}
|
|
|
|
configuration { "linux-*" }
|
|
buildoptions {
|
|
"-fPIC",
|
|
}
|
|
|
|
configuration {}
|