You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
set(CMAKE_CONFIGURATION_TYPES Debug)
|
|
enable_language(C)
|
|
|
|
add_library(SpectreMitigationOn-C empty.c)
|
|
target_compile_options(SpectreMitigationOn-C PRIVATE -Qspectre)
|
|
|
|
add_library(SpectreMitigationOff-C empty.c)
|
|
target_compile_options(SpectreMitigationOff-C PRIVATE -Qspectre-)
|