Skip to content

Commit

Permalink
cmake: don't add include <module>/src directory to avoid conflicts
Browse files Browse the repository at this point in the history
during opencv_world builds
  • Loading branch information
alalek committed Mar 19, 2018
1 parent 22ecdd1 commit 6c051a5
Show file tree
Hide file tree
Showing 28 changed files with 45 additions and 46 deletions.
6 changes: 3 additions & 3 deletions cmake/OpenCVCompilerOptimizations.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -743,11 +743,11 @@ endmacro()
macro(ocv_add_dispatched_file filename)
if(NOT OPENCV_INITIAL_PASS)
set(__codestr "
#include \"precomp.hpp\"
#include \"${filename}.simd.hpp\"
#include \"${CMAKE_CURRENT_LIST_DIR}/src/precomp.hpp\"
#include \"${CMAKE_CURRENT_LIST_DIR}/src/${filename}.simd.hpp\"
")

set(__declarations_str "#define CV_CPU_SIMD_FILENAME \"${filename}.simd.hpp\"")
set(__declarations_str "#define CV_CPU_SIMD_FILENAME \"${CMAKE_CURRENT_LIST_DIR}/src/${filename}.simd.hpp\"")
set(__dispatch_modes "BASELINE")

set(__optimizations "${ARGN}")
Expand Down
1 change: 0 additions & 1 deletion cmake/OpenCVModule.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,6 @@ endmacro()
macro(ocv_module_include_directories)
ocv_target_include_directories(${the_module}
"${OPENCV_MODULE_${the_module}_LOCATION}/include"
"${OPENCV_MODULE_${the_module}_LOCATION}/src"
"${CMAKE_CURRENT_BINARY_DIR}" # for precompiled headers
)
ocv_target_include_modules(${the_module} ${OPENCV_MODULE_${the_module}_DEPS} ${ARGN})
Expand Down
2 changes: 1 addition & 1 deletion cmake/cl2cpp.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ set(nested_namespace_end "}")

set(STR_CPP "// This file is auto-generated. Do not edit!
#include \"precomp.hpp\"
#include \"opencv2/core.hpp\"
#include \"cvconfig.h\"
#include \"${OUTPUT_HPP_NAME}\"
Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.

#include <precomp.hpp>
#include "precomp.hpp"

#include <opencv2/core/utils/configuration.private.hpp>
#include <opencv2/core/utils/logger.hpp>
Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/trace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.

#include <precomp.hpp>
#include "precomp.hpp"

#include <opencv2/core/utils/trace.hpp>
#include <opencv2/core/utils/trace.private.hpp>
Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/utils/filesystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.

#include "precomp.hpp"
#include "../precomp.hpp"

#include <opencv2/core/utils/configuration.private.hpp>

Expand Down
4 changes: 2 additions & 2 deletions modules/dnn/src/layers/batch_norm_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Implementation of Batch Normalization layer.
*/

#include "../precomp.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "../op_halide.hpp"
#include "../op_inf_engine.hpp"
#include <opencv2/dnn/shape_utils.hpp>

#ifdef HAVE_OPENCL
Expand Down
4 changes: 2 additions & 2 deletions modules/dnn/src/layers/concat_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "../op_halide.hpp"
#include "../op_inf_engine.hpp"

#ifdef HAVE_OPENCL
#include "opencl_kernels_dnn.hpp"
Expand Down
4 changes: 2 additions & 2 deletions modules/dnn/src/layers/convolution_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "../op_halide.hpp"
#include "../op_inf_engine.hpp"
#include "opencv2/core/hal/hal.hpp"
#include "opencv2/core/hal/intrin.hpp"
#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion modules/dnn/src/layers/detection_output_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_inf_engine.hpp"
#include "../op_inf_engine.hpp"
#include <float.h>
#include <string>
#include "../nms.inl.hpp"
Expand Down
4 changes: 2 additions & 2 deletions modules/dnn/src/layers/elementwise_layers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "../op_halide.hpp"
#include "../op_inf_engine.hpp"
#include "opencv2/imgproc.hpp"
#include <opencv2/dnn/shape_utils.hpp>
#include <iostream>
Expand Down
4 changes: 2 additions & 2 deletions modules/dnn/src/layers/eltwise_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "../op_halide.hpp"
#include "../op_inf_engine.hpp"

#ifdef HAVE_OPENCL
#include "opencl_kernels_dnn.hpp"
Expand Down
2 changes: 1 addition & 1 deletion modules/dnn/src/layers/flatten_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_inf_engine.hpp"
#include "../op_inf_engine.hpp"
#include <float.h>
#include <algorithm>
#include <opencv2/dnn/shape_utils.hpp>
Expand Down
4 changes: 2 additions & 2 deletions modules/dnn/src/layers/fully_connected_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "../op_halide.hpp"
#include "../op_inf_engine.hpp"
#include <opencv2/dnn/shape_utils.hpp>

#ifdef HAVE_OPENCL
Expand Down
2 changes: 1 addition & 1 deletion modules/dnn/src/layers/layers_common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

#define CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY
// dispatched AVX/AVX2 optimizations
#include "layers/layers_common.simd.hpp"
#include "./layers_common.simd.hpp"
#include "layers/layers_common.simd_declarations.hpp"
#undef CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY

Expand Down
4 changes: 2 additions & 2 deletions modules/dnn/src/layers/lrn_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "../op_halide.hpp"
#include "../op_inf_engine.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/dnn/shape_utils.hpp"
#include "opencv2/core/hal/hal.hpp"
Expand Down
2 changes: 1 addition & 1 deletion modules/dnn/src/layers/max_unpooling_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Implementation of Batch Normalization layer.

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "../op_halide.hpp"
#include <opencv2/dnn/shape_utils.hpp>

#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion modules/dnn/src/layers/padding_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Implementation of padding layer, which adds paddings to input blob.

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "../op_halide.hpp"
#include <vector>

namespace cv
Expand Down
2 changes: 1 addition & 1 deletion modules/dnn/src/layers/permute_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_inf_engine.hpp"
#include "../op_inf_engine.hpp"
#include <float.h>
#include <algorithm>

Expand Down
4 changes: 2 additions & 2 deletions modules/dnn/src/layers/pooling_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "opencv2/core/hal/intrin.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "../op_halide.hpp"
#include "../op_inf_engine.hpp"
#include <float.h>
#include <algorithm>
using std::max;
Expand Down
2 changes: 1 addition & 1 deletion modules/dnn/src/layers/prior_box_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_inf_engine.hpp"
#include "../op_inf_engine.hpp"
#include <float.h>
#include <algorithm>
#include <cmath>
Expand Down
2 changes: 1 addition & 1 deletion modules/dnn/src/layers/region_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#include "../precomp.hpp"
#include <opencv2/dnn/shape_utils.hpp>
#include <opencv2/dnn/all_layers.hpp>
#include "nms.inl.hpp"
#include "../nms.inl.hpp"

#ifdef HAVE_OPENCL
#include "opencl_kernels_dnn.hpp"
Expand Down
2 changes: 1 addition & 1 deletion modules/dnn/src/layers/reshape_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_inf_engine.hpp"
#include "../op_inf_engine.hpp"
#include <opencv2/dnn/shape_utils.hpp>

namespace cv
Expand Down
4 changes: 2 additions & 2 deletions modules/dnn/src/layers/scale_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Implementation of Scale layer.

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "../op_halide.hpp"
#include "../op_inf_engine.hpp"
#include <opencv2/dnn/shape_utils.hpp>

namespace cv
Expand Down
2 changes: 1 addition & 1 deletion modules/dnn/src/layers/shift_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Implementation of shift layer, which adds up const values to blob.
*/

#include "../precomp.hpp"
#include "op_inf_engine.hpp"
#include "../op_inf_engine.hpp"
#include <opencv2/dnn/shape_utils.hpp>

namespace cv
Expand Down
4 changes: 2 additions & 2 deletions modules/dnn/src/layers/softmax_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@

#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "../op_halide.hpp"
#include "../op_inf_engine.hpp"
#include <algorithm>
#include <stdlib.h>
using std::max;
Expand Down
2 changes: 1 addition & 1 deletion modules/dnn/src/nms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Third party copyrights are property of their respective owners.

#include "precomp.hpp"
#include <nms.inl.hpp>
#include "nms.inl.hpp"

namespace cv
{
Expand Down
14 changes: 7 additions & 7 deletions modules/viz/src/precomp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,13 @@
# include <io.h> /* unlink */
#endif

#include <vtk/vtkOBJWriter.h>
#include <vtk/vtkXYZWriter.h>
#include <vtk/vtkXYZReader.h>
#include <vtk/vtkCloudMatSink.h>
#include <vtk/vtkCloudMatSource.h>
#include <vtk/vtkTrajectorySource.h>
#include <vtk/vtkImageMatSource.h>
#include "vtk/vtkOBJWriter.h"
#include "vtk/vtkXYZWriter.h"
#include "vtk/vtkXYZReader.h"
#include "vtk/vtkCloudMatSink.h"
#include "vtk/vtkCloudMatSource.h"
#include "vtk/vtkTrajectorySource.h"
#include "vtk/vtkImageMatSource.h"


#include <opencv2/core.hpp>
Expand Down

0 comments on commit 6c051a5

Please sign in to comment.