Files
CMake/Tests/RunCMake/GenEx-COMPILE_LANG_AND_ID/add_executable.cmake
Brad King a95cbf3890 Tests: Shorten RunCMake.GenEx-* case names
Reduce the length of the longest path on disk needed by the tests.
2021-06-25 11:29:46 -04:00

6 lines
187 B
CMake

add_executable(empty main.c
$<$<COMPILE_LANG_AND_ID:C,MSVC>:empty.c>
$<$<COMPILE_LANG_AND_ID:C,GNU>:empty2.c>
$<$<COMPILE_LANG_AND_ID:C,Clang>:empty3.c>
)