mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-20 21:28:23 -05:00
234a069de3
Avoid enabling languages in cases that do not need them.
5 lines
124 B
CMake
5 lines
124 B
CMake
add_custom_target(drive)
|
|
add_custom_command(TARGET drive PRE_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E echo $<COMPILE_LANGUAGE>
|
|
)
|