Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 247 Bytes

File metadata and controls

11 lines (11 loc) · 247 Bytes

Generator Expressions

Compile Options

target_compile_options(hello
	PRIVATE
		$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:
			-Werror -Wall -Wextra>
		$<$<CXX_COMPILER_ID:MSVC>:
			/W4>
)