| 12345678910111213141516171819202122232425262728293031323334 |
- 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"
- }
|