git-svn-id: svn://db.shs.com.ru/pip@632 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2018-09-27 10:11:21 +00:00
parent 9b92720b61
commit 08592aae9a
50 changed files with 70 additions and 19 deletions

View File

@@ -98,7 +98,7 @@ get_filename_component(C_COMPILER "${CMAKE_C_COMPILER}" NAME)
# Sources # Sources
# Main lib # Main lib
set(PIP_FOLDERS "." "core" "containers" "thread" "system" "io" "console" "math" "code" "geo" "resources" "opencl" "crypt") set(PIP_FOLDERS "." "core" "containers" "thread" "system" "io_devices" "io_utils" "console" "math" "code" "geo" "resources" "opencl" "crypt")
include_directories("${PIP_SRC_MAIN}") include_directories("${PIP_SRC_MAIN}")
foreach(F ${PIP_FOLDERS}) foreach(F ${PIP_FOLDERS})
include_directories("${PIP_SRC_MAIN}/${F}") include_directories("${PIP_SRC_MAIN}/${F}")

View File

@@ -17,26 +17,22 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef PIIOMODULE_H #ifndef PIIODEVICESMODULE_H
#define PIIOMODULE_H #define PIIODEVICESMODULE_H
#include "pifile.h"
#include "piconfig.h"
#include "piserial.h"
#include "piethernet.h"
#include "piusb.h"
#include "pidiagnostics.h"
#include "pidir.h"
#include "pibinarylog.h" #include "pibinarylog.h"
#include "pifiletransfer.h" #include "pican.h"
#include "pidatatransfer.h" #include "piconfig.h"
#include "piiostring.h" #include "pidir.h"
#include "piethernet.h"
#include "pifile.h"
#include "piiobytearray.h" #include "piiobytearray.h"
#include "pitransparentdevice.h" #include "piiostring.h"
#include "pipeer.h" #include "pipeer.h"
#include "pipacketextractor.h" #include "piserial.h"
#include "piconnection.h"
#include "pisharedmemory.h" #include "pisharedmemory.h"
#include "pispi.h" #include "pispi.h"
#include "pitransparentdevice.h"
#include "piusb.h"
#endif // PIIOMODULE_H #endif // PIIODEVICESMODULE_H

View File

@@ -0,0 +1,25 @@
/*
PIP - Platform Independent Primitives
Module includes
Copyright (C) 2018 Ivan Pelipenko peri4ko@yandex.ru
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PIIOMODULE_H
#define PIIOMODULE_H
#include "piiodevicesmodule.h"
#endif // PIIOMODULE_H

View File

View File

View File

View File

View File

@@ -0,0 +1,30 @@
/*
PIP - Platform Independent Primitives
Module includes
Copyright (C) 2018 Ivan Pelipenko peri4ko@yandex.ru
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PIIOUTILSMODULE_H
#define PIIOUTILSMODULE_H
#include "pibasetransfer.h"
#include "piconnection.h"
#include "pidatatransfer.h"
#include "pidiagnostics.h"
#include "pifiletransfer.h"
#include "pipacketextractor.h"
#endif // PIIOUTILSMODULE_H

View File

@@ -3,8 +3,8 @@
#define PIVERSION_H #define PIVERSION_H
#define PIP_VERSION_MAJOR 1 #define PIP_VERSION_MAJOR 1
#define PIP_VERSION_MINOR 7 #define PIP_VERSION_MINOR 8
#define PIP_VERSION_REVISION 2 #define PIP_VERSION_REVISION 0
#define PIP_VERSION_SUFFIX "" #define PIP_VERSION_SUFFIX ""
#endif // PIVERSION_H #endif // PIVERSION_H