Skip to content

Commit

Permalink
change back minimum cmake version to 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
d99kris committed Jun 23, 2024
1 parent 83d5548 commit 8ec6a6a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Project
cmake_minimum_required(VERSION 3.14...3.22 FATAL_ERROR)
cmake_minimum_required(VERSION 3.0...3.22 FATAL_ERROR)
project(heapusage VERSION 1.0 LANGUAGES C CXX)

set(COMMON_FLAGS "-funwind-tables -g -Wall -Wextra -Wpedantic -Wshadow \
Expand Down
2 changes: 1 addition & 1 deletion ext/backward-cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

cmake_minimum_required(VERSION 3.14...3.22 FATAL_ERROR)
cmake_minimum_required(VERSION 3.0...3.22 FATAL_ERROR)
project(backward CXX)

# Introduce variables:
Expand Down
2 changes: 1 addition & 1 deletion src/heapusage
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ showusage()

showversion()
{
echo "heapusage v2.10"
echo "heapusage v2.11"
echo ""
echo "Copyright (C) 2017-2024 Kristofer Berggren"
echo ""
Expand Down
2 changes: 1 addition & 1 deletion src/heapusage.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man.
.TH HEAPUSAGE "1" "June 2024" "heapusage v2.10" "User Commands"
.TH HEAPUSAGE "1" "June 2024" "heapusage v2.11" "User Commands"
.SH NAME
heapusage \- find memory leaks in applications
.SH SYNOPSIS
Expand Down

0 comments on commit 8ec6a6a

Please sign in to comment.