Skip to content

Commit 56e204f

Browse files
authored
Merge pull request #2249 from joto/versions-in-cmake-cfg
Various version updates in cmake cfg
2 parents 8a96b76 + fb8640c commit 56e204f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
4646

4747
if (MSVC)
4848
add_definitions(-D_CRT_SECURE_NO_WARNINGS -DNOMINMAX)
49-
add_compile_options(-wd4996)
49+
add_compile_options(-wd4996 -utf-8)
5050
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /ignore:4099")
5151
else()
5252
add_compile_options(-Wall)
@@ -67,7 +67,7 @@ endif()
6767
set(MINIMUM_POSTGRESQL_SERVER_VERSION "9.6")
6868
set(MINIMUM_POSTGRESQL_SERVER_VERSION_NUM "90600")
6969

70-
set(PostgreSQL_ADDITIONAL_VERSIONS "15" "14" "13" "12" "11" "10" "9.6")
70+
set(PostgreSQL_ADDITIONAL_VERSIONS "17" "16" "15" "14" "13" "12" "11" "10" "9.6")
7171

7272
#############################################################
7373
# Version
@@ -278,7 +278,7 @@ endif()
278278

279279
message(STATUS "Looking for clang-tidy")
280280
find_program(CLANG_TIDY
281-
NAMES clang-tidy clang-tidy-16 clang-tidy-15 clang-tidy-14 clang-tidy-13 clang-tidy-12 clang-tidy-11)
281+
NAMES clang-tidy clang-tidy-19 clang-tidy-18 clang-tidy-17 clang-tidy-16 clang-tidy-15)
282282

283283
if (CLANG_TIDY)
284284
message(STATUS "Looking for clang-tidy - found ${CLANG_TIDY}")

0 commit comments

Comments
 (0)