Skip to content

Commit 0e92fa1

Browse files
authored
Fixed FTBFS due to cmake_minimum_required (#397)
It's in `cmake/LXQtTranslateTs.cmake` and resulted in ``` CMake Error at cmake/LXQtTranslateTs.cmake:56 (cmake_minimum_required): Compatibility with CMake < 3.5 has been removed from CMake ```
1 parent f7db060 commit 0e92fa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/LXQtTranslateTs.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454

5555
# CMake v2.8.3 needed to use the CMakeParseArguments module
56-
cmake_minimum_required(VERSION 2.8.3 FATAL_ERROR)
56+
cmake_minimum_required(VERSION 3.18.0 FATAL_ERROR)
5757

5858

5959
function(lxqt_translate_ts qmFiles)

0 commit comments

Comments
 (0)