mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 21:30:09 +00:00
508550c5e9
See also issue #1538
34 lines
514 B
Lua
34 lines
514 B
Lua
project "serial"
|
|
|
|
kind "StaticLib"
|
|
|
|
includedirs {"include"}
|
|
|
|
if os.is("Linux") then
|
|
buildoptions{"-fPIC"}
|
|
end
|
|
if os.is("Windows") then
|
|
files{
|
|
"src/impl/win.cc",
|
|
"src/impl/list_ports/list_ports_win.cc"
|
|
}
|
|
end
|
|
|
|
if os.is("Linux") then
|
|
files{
|
|
"src/impl/unix.cc",
|
|
"src/impl/list_ports/list_ports_linux.cc"
|
|
}
|
|
end
|
|
|
|
if os.is("MacOSX") then
|
|
files{
|
|
"src/impl/unix.cc",
|
|
"src/impl/list_ports/list_ports_osx.cc"
|
|
}
|
|
end
|
|
|
|
files {
|
|
"src/serial.cc",
|
|
"**.h"
|
|
} |