mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
11 lines
239 B
CMake
11 lines
239 B
CMake
enable_language(C)
|
|
|
|
set(info "")
|
|
|
|
# Forward information about the C++ compile features.
|
|
string(APPEND info "\
|
|
set(CMAKE_C_OUTPUT_EXTENSION \"${CMAKE_C_OUTPUT_EXTENSION}\")
|
|
")
|
|
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/info.cmake" "${info}")
|