Skip to content

Commit b18a279

Browse files
committed
Merged in bugfix/cmake_warnings (pull request #4)
Use 3.10 as minimum required cmake version Approved-by: Andreas Bacher Approved-by: Marcel Zube
2 parents 1d45314 + dd869e9 commit b18a279

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
cmake_minimum_required(VERSION 3.3.0)
1+
cmake_minimum_required(VERSION 3.10)
22
project(Log4Qt VERSION 1.6.0)
3+
if(POLICY CMP0071)
4+
cmake_policy(SET CMP0071 NEW)
5+
endif()
36

47
set(LOG4QT_STANDALONE_BUILD OFF)
58
if(PROJECT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)

0 commit comments

Comments
 (0)