Skip to content

Commit bed5c9c

Browse files
committed
Allow gcc 15 to find another error.
1 parent 94755b0 commit bed5c9c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ option(OPTIONAL_TEST "Compile optional test (might be broken)" OFF)
2020
list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
2121

2222
# fix c standard used on the project
23-
set(CMAKE_C_STANDARD 99)
23+
# No, specifying c99 prevented cpp 15 (c23) from pointing out an error.
24+
# removed for release 1.8 # set(CMAKE_C_STANDARD 99)
2425

2526
# Set additional project information
2627
set(COMPANY "wb2osz")
2728
add_definitions("-DCOMPANY=\"${COMPANY}\"")
2829
set(APPLICATION_NAME "Dire Wolf")
2930
add_definitions("-DAPPLICATION_NAME=\"${APPLICATION_NAME}\"")
3031
set(APPLICATION_MAINTAINER="John Langner, WB2OSZ")
31-
set(COPYRIGHT "Copyright (c) 2019 John Langner, WB2OSZ. All rights reserved.")
32+
set(COPYRIGHT "Copyright (c) 2011-2025 John Langner, WB2OSZ. All rights reserved.")
3233
add_definitions("-DCOPYRIGHT=\"${COPYRIGHT}\"")
3334
set(IDENTIFIER "com.${COMPANY}.${APPLICATION_NAME}")
3435
add_definitions("-DIDENTIFIER=\"${IDENTIFIER}\"")

0 commit comments

Comments
 (0)