File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,15 +20,16 @@ option(OPTIONAL_TEST "Compile optional test (might be broken)" OFF)
20
20
list (APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR} /cmake/modules )
21
21
22
22
# 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)
24
25
25
26
# Set additional project information
26
27
set (COMPANY "wb2osz" )
27
28
add_definitions ("-DCOMPANY=\" ${COMPANY} \" " )
28
29
set (APPLICATION_NAME "Dire Wolf" )
29
30
add_definitions ("-DAPPLICATION_NAME=\" ${APPLICATION_NAME} \" " )
30
31
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." )
32
33
add_definitions ("-DCOPYRIGHT=\" ${COPYRIGHT} \" " )
33
34
set (IDENTIFIER "com.${COMPANY} .${APPLICATION_NAME} " )
34
35
add_definitions ("-DIDENTIFIER=\" ${IDENTIFIER} \" " )
You can’t perform that action at this time.
0 commit comments