it seems that the CMakeFile sets the build flags
|
set(CMAKE_C_FLAGS "-std=c11 -mcx16") |
in a way, that does not allow the user to inject additional build flags.
would it be possible to use something like this instead:
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11 -mcx16")
?
it seems that the CMakeFile sets the build flags
o2/CMakeLists.txt
Line 361 in 151b1c6
would it be possible to use something like this instead:
?