Skip to content

Commit dee137d

Browse files
authored
Fix minimum CMake version for -DLIB_PROTO_MUTATOR_TESTING=ON (#276)
Signed-off-by: Sebastian Pipping <[email protected]>
1 parent 57928f4 commit dee137d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 2 deletions
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.10)
15+
cmake_minimum_required(VERSION 3.13)
1616
project(LibProtobufMutator CXX)
1717

1818
enable_language(C)
@@ -154,7 +154,6 @@ if (LIB_PROTO_MUTATOR_EXAMPLES AND (NOT "${LIB_PROTO_MUTATOR_FUZZER_LIBRARIES}"
154154
NOT "${FUZZING_FLAGS}" STREQUAL ""))
155155
# NOTE: We need the maximum from:
156156
# - CMake >=3.10 for libexpat 2.6.4
157-
# - CMake >=3.13 for GoogleTest 1.15.0
158157
# - CMake >=3.18 for libxml2 2.13.6
159158
cmake_minimum_required(VERSION 3.18)
160159
add_subdirectory(examples EXCLUDE_FROM_ALL)

0 commit comments

Comments
 (0)