Skip to content

Commit d928f2d

Browse files
committed
feat: update minimum CMake version to 3.5
1 parent d170cb6 commit d928f2d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# Top level CMake file that defines the entire Firebase C++ SDK build.
1616

17-
cmake_minimum_required (VERSION 3.1)
17+
cmake_minimum_required (VERSION 3.5)
1818

1919
set (CMAKE_CXX_STANDARD 14)
2020
set (CMAKE_CXX_STANDARD_REQUIRED YES) # Don't fall back to an earlier version.

app/rest/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# CMake file for the firebase_rest_lib library
1616

17-
cmake_minimum_required (VERSION 3.1)
17+
cmake_minimum_required (VERSION 3.5)
1818
# Firebase C++ SDK requires C++14.
1919
set (CMAKE_CXX_STANDARD 14)
2020
set (CMAKE_CXX_STANDARD_REQUIRED YES) # Don't fall back to an earlier version.

ios_pod/empty_CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# Stub cmake project to enable pod files to be installed against
1616

17-
cmake_minimum_required (VERSION 3.1)
17+
cmake_minimum_required (VERSION 3.5)
1818

1919
project (GetPods CXX)
2020
add_library(GetPods empty.cc)

release_build_files/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# Top level CMake file that defines targets for the Firebase C++ SDK.
1616

17-
cmake_minimum_required(VERSION 3.1)
17+
cmake_minimum_required(VERSION 3.5)
1818

1919
include(FindPkgConfig)
2020

testing/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
cmake_minimum_required (VERSION 3.1)
15+
cmake_minimum_required (VERSION 3.5)
1616
set (CMAKE_CXX_STANDARD 14)
1717
set (CMAKE_CXX_STANDARD_REQUIRED YES) # Don't fall back to an earlier version.
1818

0 commit comments

Comments
 (0)