mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
31 lines
449 B
Lua
31 lines
449 B
Lua
project "serial"
|
|
|
|
kind "StaticLib"
|
|
|
|
includedirs {"include"}
|
|
|
|
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"
|
|
} |