/usr/include/OTB-6.4/otb_shark.h is in libotb-dev 6.4.0+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | /*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef otb_shark_h
#define otb_shark_h
#include "otbConfigure.h"
#ifndef OTB_USE_SHARK
# error "You need to enable Shark to compile this file"
#endif
/* These defines are taken from shark CMakeLists.txt.
* I am not sure they are required when linking shark which
* link with boost. But the fact that they are not optional
* in shark puts them here.
*/
#define BOOST_PARAMETER_MAX_ARITY 15
#define BOOST_FILESYSTEM_VERSION 3
/* without having a compile definition will give an linker error
* when build otbapp_TrainImagesClassifier or this header test.
* So define them depending on wheather you have static or shared
* build of boost.
*
* Below is an error message if you don't have define
* LINK : fatal error LNK1104: cannot open file 'libboost_serialization-vc140-mt-1_60.lib'
* and in the install directory there is no libboost_serialization-vc140-mt-1_60.lib
* but only boost_serialization-vc140-mt-1_60.lib and this is the cause of boost's
* auto-linking.
*/
/* #undef Boost_USE_STATIC_LIBS */
#if !defined(Boost_USE_STATIC_LIBS) && !defined(BOOST_ALL_DYN_LINK)
#define BOOST_ALL_DYN_LINK
#endif
/* disable autolinking in boost on windows */
#if defined(_WIN32) && !defined(BOOST_ALL_NO_LIB)
#define BOOST_ALL_NO_LIB
#endif
/* see which libraries are being linked in case of auto-linking,
* BOOST_LIB_DIAGNOSTIC will emit a #pragma message each time
* a library is selected for linking.
*
* #if defined(_MSC_VER) && defined(OTB_DEBUG) && !defined(BOOST_LIB_DIAGNOSTIC)
* #define BOOST_LIB_DIAGNOSTIC
* #endif
*
*/
#endif /* otb_shark_h */
|