Set standard to C99

This commit is contained in:
Alex 2020-07-05 13:14:41 +02:00
parent 8e1b99a161
commit 14b2a09fe7
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ if ( USE_HELPERS )
set(build_FILES src/uirc.c src/helpers.c)
endif()
add_library(uirc SHARED ${build_FILES})
set_property(TARGET uirc PROPERTY C_STANDARD 11)
set_property(TARGET uirc PROPERTY C_STANDARD 99)
install(TARGETS uirc DESTINATION ${CMAKE_INSTALL_BINDIR})