diff options
author | Brad King <brad.king@kitware.com> | 2016-06-02 14:07:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-08-12 14:40:51 (GMT) |
commit | 735f168bf08a4fdf1d9e245035d2dbcadbed652f (patch) | |
tree | f7d2a3f076d53030afca6a4cee67def4793ff95c /Modules/CMakeCCompiler.cmake.in | |
parent | c148803a575ed1c3639123190b1d6a5d31578f34 (diff) | |
download | CMake-735f168bf08a4fdf1d9e245035d2dbcadbed652f.zip CMake-735f168bf08a4fdf1d9e245035d2dbcadbed652f.tar.gz CMake-735f168bf08a4fdf1d9e245035d2dbcadbed652f.tar.bz2 |
CMakeDetermine*Compiler: Add hook to save custom compiler information
Provide a way for Platform/<os>-Determine-<lang>.cmake modules to save
platform-specific information about the compiler in the configured
CMake<lang>Compiler.cmake modules.
Diffstat (limited to 'Modules/CMakeCCompiler.cmake.in')
-rw-r--r-- | Modules/CMakeCCompiler.cmake.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/CMakeCCompiler.cmake.in b/Modules/CMakeCCompiler.cmake.in index f109a14..50b12f2 100644 --- a/Modules/CMakeCCompiler.cmake.in +++ b/Modules/CMakeCCompiler.cmake.in @@ -59,6 +59,7 @@ if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") endif() +@CMAKE_C_COMPILER_CUSTOM_CODE@ @CMAKE_C_SYSROOT_FLAG_CODE@ @CMAKE_C_OSX_DEPLOYMENT_TARGET_FLAG_CODE@ |