mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 19:30:13 -06:00
Add compiler information modules. Update the test suite. Fixes: #25032 Co-authored-by: Brad King <brad.king@kitware.com>
11 lines
325 B
CMake
11 lines
325 B
CMake
set(CMAKE_LINK_LIBRARY_SUFFIX "")
|
|
set(CMAKE_STATIC_LIBRARY_SUFFIX ".l")
|
|
set(CMAKE_IMPORT_LIBRARY_SUFFIX ".l")
|
|
set(CMAKE_FIND_LIBRARY_PREFIXES "")
|
|
set(CMAKE_FIND_LIBRARY_SUFFIXES ".l")
|
|
|
|
macro(__windows_compiler_orangec lang)
|
|
set(CMAKE_${lang}_CREATE_WIN32_EXE "-Wg")
|
|
set(CMAKE_${lang}_CREATE_CONSOLE_EXE "-Wc")
|
|
endmacro()
|