8000 Fix cmake_minimum_required to be 2.8.12 · log4cplus/log4cplus@f3e4218 · GitHub
[go: up one dir, main page]

Skip to content

Commit f3e4218

Browse files
ejoernswilx
authored andcommitted
Fix cmake_minimum_required to be 2.8.12
The src/CMakeLists.txt makes use of the `INCLUDES DESTINATION` install argument which was introduced into CMake with rev '650e61f'. The first CMake release including this rev is 2.8.12. Thus the minimum required CMake version must be adjusted to 2.8.12. Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
1 parent 83e91a5 commit f3e4218

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ endif ()
1212
set (CMAKE_LEGACY_CYGWIN_WIN32 0)
1313

1414
project (log4cplus)
15-
cmake_minimum_required (VERSION 2.8.4)
15+
cmake_minimum_required (VERSION 2.8.12)
1616

1717
enable_language (CXX)
1818
include(GNUInstallDirs)

0 commit comments

Comments
 (0)
0