123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- set_compiler_property(PROPERTY no_optimization)
- set_compiler_property(PROPERTY optimization_debug)
- set_compiler_property(PROPERTY optimization_speed)
- set_compiler_property(PROPERTY optimization_size)
- set_compiler_property(PROPERTY warning_base)
- set_compiler_property(PROPERTY warning_dw_1)
- set_compiler_property(PROPERTY warning_dw_2)
- set_compiler_property(PROPERTY warning_dw_3)
- set_compiler_property(PROPERTY warning_extended)
- set_compiler_property(PROPERTY warning_error_implicit_int)
- set_compiler_property(PROPERTY warning_error_misra_sane)
- set_compiler_property(PROPERTY cstd)
- set_compiler_property(PROPERTY nostdinc)
- set_compiler_property(PROPERTY nostdinc_include)
- set_compiler_property(TARGET compiler-cpp PROPERTY nostdincxx)
- set_property(TARGET compiler-cpp PROPERTY required)
- set_property(TARGET compiler-cpp PROPERTY dialect_cpp98)
- set_property(TARGET compiler-cpp PROPERTY dialect_cpp11)
- set_property(TARGET compiler-cpp PROPERTY dialect_cpp14)
- set_property(TARGET compiler-cpp PROPERTY dialect_cpp17)
- set_property(TARGET compiler-cpp PROPERTY dialect_cpp2a)
- set_property(TARGET compiler-cpp PROPERTY dialect_cpp20)
- set_property(TARGET compiler-cpp PROPERTY dialect_cpp2b)
- set_property(TARGET compiler-cpp PROPERTY no_exceptions)
- set_property(TARGET compiler-cpp PROPERTY no_rtti)
- set_compiler_property(PROPERTY coverage)
- set_compiler_property(PROPERTY security_canaries)
- set_compiler_property(PROPERTY security_fortify)
- set_compiler_property(PROPERTY hosted)
- set_compiler_property(PROPERTY freestanding)
- set_compiler_property(PROPERTY debug)
- set_compiler_property(PROPERTY no_common)
- set_compiler_property(PROPERTY imacros)
- set_compiler_property(PROPERTY sanitize_address)
- set_compiler_property(PROPERTY sanitize_undefined)
- set_property(TARGET compiler-cpp PROPERTY no_threadsafe_statics)
- set_property(TARGET asm PROPERTY required)
|