]> granicus.if.org Git - json-c/commit
Properly append to CMAKE_C_FLAGS string
authorJaap Keuter <jaap.keuter@xs4all.nl>
Thu, 12 Dec 2019 20:28:03 +0000 (21:28 +0100)
committerJaap Keuter <jaap.keuter@xs4all.nl>
Thu, 12 Dec 2019 20:28:03 +0000 (21:28 +0100)
commit78d8e5c3d5108e570bd904242a74548572fc91bc
tree1027e0586bb1b8973b821d61607439c0ca646a47
parent6c55f65d07a972dbd2d1668aab2e0056ccdd52fc
Properly append to CMAKE_C_FLAGS string

Contrary to other CMAKE variables the CMAKE_C_FLAGS variable is the
composed string of flags for the C compiler. It is therefore not a list
to append to. Current implementation results in these incorrect CFLAGS,
e.g., "-O2 -g -fblahblah;-UNDEBUG". Extending the CFLAGS this way
results in the proper CFLAGS, e.g., "-O2 -g -fblahblah -UNDEBUG".
tests/CMakeLists.txt