forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI Conda: add patch to enable OGR_REGISTER_DRIVER_ARROW/PARQUET_FOR_L…
…ATER_PLUGIN
- Loading branch information
Showing
3 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/recipe/bld.bat b/recipe/bld.bat | ||
index b6616ae..b98a480 100644 | ||
--- a/recipe/bld.bat | ||
+++ b/recipe/bld.bat | ||
@@ -32,6 +32,8 @@ cmake -G "Ninja" ^ | ||
-DGDAL_USE_PARQUET=OFF ^ | ||
-DGDAL_USE_ARROW=OFF ^ | ||
-DGDAL_USE_ARROWDATASET=OFF ^ | ||
+ -DOGR_REGISTER_DRIVER_ARROW_FOR_LATER_PLUGIN=ON ^ | ||
+ -DOGR_REGISTER_DRIVER_PARQUET_FOR_LATER_PLUGIN=ON ^ | ||
"%SRC_DIR%" | ||
|
||
if errorlevel 1 exit /b 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/recipe/build.sh b/recipe/build.sh | ||
index a3474a2..249dc89 100644 | ||
--- a/recipe/build.sh | ||
+++ b/recipe/build.sh | ||
@@ -23,6 +23,8 @@ cmake -G "Unix Makefiles" \ | ||
-DGDAL_USE_PARQUET=OFF \ | ||
-DGDAL_USE_ARROW=OFF \ | ||
-DGDAL_USE_ARROWDATASET=OFF \ | ||
+ -DOGR_REGISTER_DRIVER_ARROW_FOR_LATER_PLUGIN=ON \ | ||
+ -DOGR_REGISTER_DRIVER_PARQUET_FOR_LATER_PLUGIN=ON \ | ||
-DGDAL_ENABLE_HDF5_GLOBAL_LOCK:BOOL=ON \ | ||
-DBUILD_PYTHON_BINDINGS:BOOL=OFF \ | ||
-DBUILD_JAVA_BINDINGS:BOOL=OFF \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters