File tree 3 files changed +9
-0
lines changed
ogr/ogrsf_frmts/flatgeobuf
3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -11,3 +11,5 @@ add_gdal_driver(
11
11
gdal_standard_includes(ogr_FlatGeobuf)
12
12
target_include_directories (ogr_FlatGeobuf PRIVATE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR} >
13
13
$<TARGET_PROPERTY:ogrsf_generic,SOURCE_DIR>)
14
+ # Quick and dirty way of modifying the default flatbuffers namespace to gdal_flatbuffers
15
+ target_compile_definitions (ogr_FlatGeobuf PRIVATE -Dflatbuffers=gdal_flatbuffers)
Original file line number Diff line number Diff line change 32
32
33
33
#include " header_generated.h"
34
34
35
+ // For users not using CMake...
36
+ #ifndef flatbuffers
37
+ #error \
38
+ " Make sure to build with -Dflatbuffers=gdal_flatbuffers (for example) to avoid potential conflict of flatbuffers"
39
+ #endif
40
+
35
41
using namespace flatbuffers ;
36
42
using namespace FlatGeobuf ;
37
43
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ for dirname in alg port gcore ogr frmts gnm apps fuzzers; do
98
98
-D__x86_64__ \
99
99
-DFLT_EVAL_METHOD \
100
100
-DKDU_HAS_ROI_RECT \
101
+ -Dflatbuffers=gdal_flatbuffers \
101
102
--include=" ${CPL_CONFIG_H} " \
102
103
--include=port/cpl_port.h \
103
104
-I " ${CPL_CONFIG_H_DIR} " \
You can’t perform that action at this time.
0 commit comments