summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Gilles <jgilles@multitech.com>2015-04-30 13:13:10 -0500
committerJesse Gilles <jgilles@multitech.com>2015-04-30 13:17:36 -0500
commit29b2b5959491946672e4cbb6126ef93c1281cd34 (patch)
treecd703929da7c0d0ea746690b05ecdc69de387ac6
parenta259a536ee561c992d971db240c9cc8a7b7aa74d (diff)
downloadlibmts-io-29b2b5959491946672e4cbb6126ef93c1281cd34.tar.gz
libmts-io-29b2b5959491946672e4cbb6126ef93c1281cd34.tar.bz2
libmts-io-29b2b5959491946672e4cbb6126ef93c1281cd34.zip
rename to libmts-io
-rw-r--r--.gitignore4
-rw-r--r--Makefile18
-rw-r--r--include/mts/MTS_IO_CE910Radio.h8
-rw-r--r--include/mts/MTS_IO_CdmaRadio.h8
-rw-r--r--include/mts/MTS_IO_CellularRadio.h8
-rw-r--r--include/mts/MTS_IO_CellularRadioFactory.h8
-rw-r--r--include/mts/MTS_IO_Connection.h8
-rw-r--r--include/mts/MTS_IO_DE910Radio.h8
-rw-r--r--include/mts/MTS_IO_GE910Radio.h8
-rw-r--r--include/mts/MTS_IO_HE910DRadio.h8
-rw-r--r--include/mts/MTS_IO_HE910EUDRadio.h8
-rw-r--r--include/mts/MTS_IO_HE910Radio.h8
-rw-r--r--include/mts/MTS_IO_LE910EUGRadio.h8
-rw-r--r--include/mts/MTS_IO_LE910NAGRadio.h8
-rw-r--r--include/mts/MTS_IO_LE910Radio.h8
-rw-r--r--include/mts/MTS_IO_LE910SVGRadio.h8
-rw-r--r--include/mts/MTS_IO_LockFile.h8
-rw-r--r--include/mts/MTS_IO_MccMncTable.h8
-rw-r--r--include/mts/MTS_IO_SerialConnection.h8
-rw-r--r--src/MTS_IO_CE910Radio.cpp8
-rw-r--r--src/MTS_IO_CdmaRadio.cpp8
-rw-r--r--src/MTS_IO_CellularRadio.cpp8
-rw-r--r--src/MTS_IO_CellularRadioFactory.cpp8
-rw-r--r--src/MTS_IO_Connection.cpp8
-rw-r--r--src/MTS_IO_DE910Radio.cpp8
-rw-r--r--src/MTS_IO_GE910Radio.cpp8
-rw-r--r--src/MTS_IO_HE910DRadio.cpp8
-rw-r--r--src/MTS_IO_HE910EUDRadio.cpp8
-rw-r--r--src/MTS_IO_HE910Radio.cpp8
-rw-r--r--src/MTS_IO_LE910EUGRadio.cpp8
-rw-r--r--src/MTS_IO_LE910NAGRadio.cpp8
-rw-r--r--src/MTS_IO_LE910Radio.cpp8
-rw-r--r--src/MTS_IO_LE910SVGRadio.cpp8
-rw-r--r--src/MTS_IO_LockFile.cpp8
-rw-r--r--src/MTS_IO_MccMncTable.cpp8
-rw-r--r--src/MTS_IO_SerialConnection.cpp8
-rw-r--r--test/CMakeLists.txt2
37 files changed, 148 insertions, 148 deletions
diff --git a/.gitignore b/.gitignore
index 1369c23..5296eff 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,5 +7,5 @@ doc/doxygen.log
*.xml
*.o
*.d
-libmts_io.a
-libmts_io.so*
+libmts-io.a
+libmts-io.so*
diff --git a/Makefile b/Makefile
index a52c60b..fe019f8 100644
--- a/Makefile
+++ b/Makefile
@@ -41,17 +41,17 @@ MTS_IO_LockFile.d \
MTS_IO_MccMncTable.d \
MTS_IO_SerialConnection.d
-all: libmts_io.a libmts_io.so.0
+all: libmts-io.a libmts-io.so.0
-libmts_io.a: $(OBJS)
+libmts-io.a: $(OBJS)
@echo 'Building target: $@'
- $(AR) -r libmts_io.a $(OBJS)
+ $(AR) -r libmts-io.a $(OBJS)
@echo 'Finished building target: $@'
@echo ' '
-libmts_io.so.0: $(OBJS)
+libmts-io.so.0: $(OBJS)
@echo 'Building target: $@'
- $(CXX) -shared -Wl,-soname,$@ -o libmts_io.so.$(VERSION) $(OBJS)
+ $(CXX) -shared -Wl,-soname,$@ -o libmts-io.so.$(VERSION) $(OBJS)
@echo 'Finished building target: $@'
@echo ' '
@@ -64,13 +64,13 @@ libmts_io.so.0: $(OBJS)
install:
mkdir -p $(DESTDIR)$(libdir)
mkdir -p $(DESTDIR)$(includedir)/mts
- install -m 0644 libmts_io.a libmts_io.so.$(VERSION) $(DESTDIR)$(libdir)/
- ln -sf libmts_io.so.$(VERSION) $(DESTDIR)$(libdir)/libmts_io.so.0
- ln -sf libmts_io.so.0 $(DESTDIR)$(libdir)/libmts_io.so
+ install -m 0644 libmts-io.a libmts-io.so.$(VERSION) $(DESTDIR)$(libdir)/
+ ln -sf libmts-io.so.$(VERSION) $(DESTDIR)$(libdir)/libmts-io.so.0
+ ln -sf libmts-io.so.0 $(DESTDIR)$(libdir)/libmts-io.so
install -m 0644 include/mts/* $(DESTDIR)$(includedir)/mts/
clean:
- -$(RM) $(OBJS) $(CPP_DEPS) libmts_io.a libmts_io.so*
+ -$(RM) $(OBJS) $(CPP_DEPS) libmts-io.a libmts-io.so*
-@echo ' '
.PHONY: all clean dependents install
diff --git a/include/mts/MTS_IO_CE910Radio.h b/include/mts/MTS_IO_CE910Radio.h
index 9719c7a..47444d9 100644
--- a/include/mts/MTS_IO_CE910Radio.h
+++ b/include/mts/MTS_IO_CE910Radio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_CdmaRadio.h b/include/mts/MTS_IO_CdmaRadio.h
index 146034b..448cdc7 100644
--- a/include/mts/MTS_IO_CdmaRadio.h
+++ b/include/mts/MTS_IO_CdmaRadio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_CellularRadio.h b/include/mts/MTS_IO_CellularRadio.h
index b253c80..07daf19 100644
--- a/include/mts/MTS_IO_CellularRadio.h
+++ b/include/mts/MTS_IO_CellularRadio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_CellularRadioFactory.h b/include/mts/MTS_IO_CellularRadioFactory.h
index 5fa44d7..d3616be 100644
--- a/include/mts/MTS_IO_CellularRadioFactory.h
+++ b/include/mts/MTS_IO_CellularRadioFactory.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_Connection.h b/include/mts/MTS_IO_Connection.h
index bd4b32f..f90b6c9 100644
--- a/include/mts/MTS_IO_Connection.h
+++ b/include/mts/MTS_IO_Connection.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_DE910Radio.h b/include/mts/MTS_IO_DE910Radio.h
index 40dc132..e9e8287 100644
--- a/include/mts/MTS_IO_DE910Radio.h
+++ b/include/mts/MTS_IO_DE910Radio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_GE910Radio.h b/include/mts/MTS_IO_GE910Radio.h
index 079765d..403e623 100644
--- a/include/mts/MTS_IO_GE910Radio.h
+++ b/include/mts/MTS_IO_GE910Radio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_HE910DRadio.h b/include/mts/MTS_IO_HE910DRadio.h
index 2fd648e..6ab6bc4 100644
--- a/include/mts/MTS_IO_HE910DRadio.h
+++ b/include/mts/MTS_IO_HE910DRadio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_HE910EUDRadio.h b/include/mts/MTS_IO_HE910EUDRadio.h
index 96353f2..3ade27f 100644
--- a/include/mts/MTS_IO_HE910EUDRadio.h
+++ b/include/mts/MTS_IO_HE910EUDRadio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_HE910Radio.h b/include/mts/MTS_IO_HE910Radio.h
index ee8e1e7..8c1aaa1 100644
--- a/include/mts/MTS_IO_HE910Radio.h
+++ b/include/mts/MTS_IO_HE910Radio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_LE910EUGRadio.h b/include/mts/MTS_IO_LE910EUGRadio.h
index d0607e2..6dc91f5 100644
--- a/include/mts/MTS_IO_LE910EUGRadio.h
+++ b/include/mts/MTS_IO_LE910EUGRadio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_LE910NAGRadio.h b/include/mts/MTS_IO_LE910NAGRadio.h
index a05a311..dfd35a1 100644
--- a/include/mts/MTS_IO_LE910NAGRadio.h
+++ b/include/mts/MTS_IO_LE910NAGRadio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_LE910Radio.h b/include/mts/MTS_IO_LE910Radio.h
index e2f4c12..5391304 100644
--- a/include/mts/MTS_IO_LE910Radio.h
+++ b/include/mts/MTS_IO_LE910Radio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_LE910SVGRadio.h b/include/mts/MTS_IO_LE910SVGRadio.h
index d92f877..7804f57 100644
--- a/include/mts/MTS_IO_LE910SVGRadio.h
+++ b/include/mts/MTS_IO_LE910SVGRadio.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_LockFile.h b/include/mts/MTS_IO_LockFile.h
index dcfb9ae..730cf3c 100644
--- a/include/mts/MTS_IO_LockFile.h
+++ b/include/mts/MTS_IO_LockFile.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_MccMncTable.h b/include/mts/MTS_IO_MccMncTable.h
index 7772258..7999678 100644
--- a/include/mts/MTS_IO_MccMncTable.h
+++ b/include/mts/MTS_IO_MccMncTable.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/include/mts/MTS_IO_SerialConnection.h b/include/mts/MTS_IO_SerialConnection.h
index b4bb61f..a4ca011 100644
--- a/include/mts/MTS_IO_SerialConnection.h
+++ b/include/mts/MTS_IO_SerialConnection.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_CE910Radio.cpp b/src/MTS_IO_CE910Radio.cpp
index b60c648..bb6e97a 100644
--- a/src/MTS_IO_CE910Radio.cpp
+++ b/src/MTS_IO_CE910Radio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_CdmaRadio.cpp b/src/MTS_IO_CdmaRadio.cpp
index 66ce820..72923a7 100644
--- a/src/MTS_IO_CdmaRadio.cpp
+++ b/src/MTS_IO_CdmaRadio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_CellularRadio.cpp b/src/MTS_IO_CellularRadio.cpp
index adea939..02bbd33 100644
--- a/src/MTS_IO_CellularRadio.cpp
+++ b/src/MTS_IO_CellularRadio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_CellularRadioFactory.cpp b/src/MTS_IO_CellularRadioFactory.cpp
index 3a5cb74..5928467 100644
--- a/src/MTS_IO_CellularRadioFactory.cpp
+++ b/src/MTS_IO_CellularRadioFactory.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_Connection.cpp b/src/MTS_IO_Connection.cpp
index 36a91ed..40e460e 100644
--- a/src/MTS_IO_Connection.cpp
+++ b/src/MTS_IO_Connection.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_DE910Radio.cpp b/src/MTS_IO_DE910Radio.cpp
index 766d7d1..f11e8c5 100644
--- a/src/MTS_IO_DE910Radio.cpp
+++ b/src/MTS_IO_DE910Radio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_GE910Radio.cpp b/src/MTS_IO_GE910Radio.cpp
index 013837b..7e35323 100644
--- a/src/MTS_IO_GE910Radio.cpp
+++ b/src/MTS_IO_GE910Radio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_HE910DRadio.cpp b/src/MTS_IO_HE910DRadio.cpp
index b159a9c..c2ca05e 100644
--- a/src/MTS_IO_HE910DRadio.cpp
+++ b/src/MTS_IO_HE910DRadio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_HE910EUDRadio.cpp b/src/MTS_IO_HE910EUDRadio.cpp
index 4ae7e19..ca47b4f 100644
--- a/src/MTS_IO_HE910EUDRadio.cpp
+++ b/src/MTS_IO_HE910EUDRadio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_HE910Radio.cpp b/src/MTS_IO_HE910Radio.cpp
index 3a7851a..f548b4e 100644
--- a/src/MTS_IO_HE910Radio.cpp
+++ b/src/MTS_IO_HE910Radio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_LE910EUGRadio.cpp b/src/MTS_IO_LE910EUGRadio.cpp
index c3e54c3..9e970b3 100644
--- a/src/MTS_IO_LE910EUGRadio.cpp
+++ b/src/MTS_IO_LE910EUGRadio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_LE910NAGRadio.cpp b/src/MTS_IO_LE910NAGRadio.cpp
index c2f8bf5..03ac9be 100644
--- a/src/MTS_IO_LE910NAGRadio.cpp
+++ b/src/MTS_IO_LE910NAGRadio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_LE910Radio.cpp b/src/MTS_IO_LE910Radio.cpp
index cbff249..66a074e 100644
--- a/src/MTS_IO_LE910Radio.cpp
+++ b/src/MTS_IO_LE910Radio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_LE910SVGRadio.cpp b/src/MTS_IO_LE910SVGRadio.cpp
index ee9b3f8..692350d 100644
--- a/src/MTS_IO_LE910SVGRadio.cpp
+++ b/src/MTS_IO_LE910SVGRadio.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_LockFile.cpp b/src/MTS_IO_LockFile.cpp
index a4879de..b74ba73 100644
--- a/src/MTS_IO_LockFile.cpp
+++ b/src/MTS_IO_LockFile.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_MccMncTable.cpp b/src/MTS_IO_MccMncTable.cpp
index 8ac3f62..e375213 100644
--- a/src/MTS_IO_MccMncTable.cpp
+++ b/src/MTS_IO_MccMncTable.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/src/MTS_IO_SerialConnection.cpp b/src/MTS_IO_SerialConnection.cpp
index 8f0b8e3..4a7923b 100644
--- a/src/MTS_IO_SerialConnection.cpp
+++ b/src/MTS_IO_SerialConnection.cpp
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2015 by Multi-Tech Systems
*
- * This file is part of libmts_io.
+ * This file is part of libmts-io.
*
- * libmts_io is free software: you can redistribute it and/or modify
+ * libmts-io is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
- * libmts_io is distributed in the hope that it will be useful,
+ * libmts-io is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libmts_io. If not, see <http://www.gnu.org/licenses/>.
+ * along with libmts-io. If not, see <http://www.gnu.org/licenses/>.
*
*/
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 64428e9..8cfb660 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -6,4 +6,4 @@ link_directories (..)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -DCPPUNIT_MAIN=main")
add_executable (TestRunnerClient TestRunnerClient.cpp )
-target_link_libraries (TestRunnerClient cppunit mts mts_io ssl rt pthread)
+target_link_libraries (TestRunnerClient cppunit mts mts-io ssl rt pthread)