dvidelabs / flatcc

FlatBuffers Compiler and Library in C for C
Apache License 2.0
646 stars 182 forks source link

Avoid false detection of Clang while using Clang-cl #260

Closed taloz5 closed 1 year ago

taloz5 commented 1 year ago

When working with Clang-cl on MSVC, the compiler ID is set to Clang while it expects flag in MSVC style. So need to check also CMAKE_CXX_SIMULATE_ID and not only CMAKE_C_COMPILER_ID

mikkelfj commented 1 year ago

Thanks