Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
bramtayl committed Jun 21, 2024
1 parent 0ec0a26 commit 3e554bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.24)

project(Justly VERSION 0.4.3 LANGUAGES CXX)
project(Justly VERSION 0.4.4 LANGUAGES CXX)

# requires at least qt 6.5.1
# newer than version currently shipped by ubuntu
Expand All @@ -17,7 +17,7 @@ include(CTest)
include(InstallRequiredSystemLibraries)

option(BUILD_TESTS "Build tests" ON)
option(TRACK_COVERAGE "Track coverage" OFF)
option(TRACK_COVERAGE "Track coverage" ON)
option(INCLUDE_WHAT_YOU_USE "Run include-what-you-use" ON)
option(CLANG_TIDY "Run clang-tidy" OFF)

Expand Down Expand Up @@ -64,8 +64,8 @@ else()
add_compile_options(-Wall)
endif()

check_compiler_flag(CXX -Wextra has_all_warnings)
if (has_all_warnings)
check_compiler_flag(CXX -Wextra has_extra_warnings)
if (has_extra_warnings)
add_compile_options(-Wextra)
endif()
endif()
Expand Down

0 comments on commit 3e554bb

Please sign in to comment.