Browse Source

Use NEW behaviour for project VERSION variables.

cf https://cmake.org/cmake/help/latest/policy/CMP0048.html#policy:CMP0048
Corentin Le Molgat 7 năm trước cách đây
mục cha
commit
1ec9beb477
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      cmake/CMakeLists.txt

+ 4 - 0
cmake/CMakeLists.txt

@@ -8,6 +8,10 @@ endif()
 # CMake policies
 cmake_policy(SET CMP0022 NEW)
 
+if(POLICY CMP0048)
+  cmake_policy(SET CMP0048 NEW)
+endif()
+
 # Project
 project(protobuf C CXX)