You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by we...@apache.org on 2018/09/18 20:38:56 UTC

[parquet-cpp] branch master updated: Error if user tries to build from master

This is an automated email from the ASF dual-hosted git repository.

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-cpp.git


The following commit(s) were added to refs/heads/master by this push:
     new 93683ce  Error if user tries to build from master
93683ce is described below

commit 93683ce0b6681dcab1c023e665c1999ef0715d50
Author: Wes McKinney <we...@apache.org>
AuthorDate: Tue Sep 18 16:38:43 2018 -0400

    Error if user tries to build from master
---
 CMakeLists.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 698f6d7..fa4fb21 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -18,6 +18,9 @@
 # Require cmake that supports BYPRODUCTS in add_custom_command, ExternalProject_Add [1].
 cmake_minimum_required(VERSION 3.2.0)
 
+message(FATAL_ERROR "Building parquet-cpp master is no longer supported. "
+  "Build from C++ codebase in https://github.com/apache/arrow with -DARROW_PARQUET=ON")
+
 file(READ "${CMAKE_CURRENT_SOURCE_DIR}/.parquetcppversion" PARQUET_VERSION)
 string(REPLACE "\n" "" PARQUET_VERSION "${PARQUET_VERSION}")
 string(REGEX MATCH "^([0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?)" VERSION ${PARQUET_VERSION})