Skip to content

Commit

Permalink
feat(build): Fix CMake < 3.5 compatibility warning
Browse files Browse the repository at this point in the history
I'm just interested in keeping CMake 3.3 support for easier building
on OSX 10.4.
  • Loading branch information
dwatteau authored Jun 3, 2024
1 parent 4b82949 commit 73e52c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: MIT

cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
cmake_minimum_required(VERSION 3.3..3.5 FATAL_ERROR)

# Don't export symbols, unless ENABLE_EXPORTS is used
if(POLICY CMP0065)
Expand Down

0 comments on commit 73e52c8

Please sign in to comment.