mirror of
https://github.com/reactos/CMake.git
synced 2024-11-26 13:00:25 +00:00
bea1a5de77
two-step priority (None or Prefered) Current order: ASM 0, C 10, Fortran 20, CXX 30, Java 40 This is the same order as automake choses: http://www.gnu.org/software/automake/manual/html_node/How-the-Linker-is-Chosen.html This change should be backward compatible: if there is a project using fortran and CXX, they had to set the LINKER_LANGUAGE explicitely, otherwise cmake complained (but still generated the project files). Explicitely setting the linker language still overrides automatic detection. If somebody has a custom language for cmake and the PREFERENCE starts with "P", its changed to 100, which gives it preference over all other languages (except the other custom languages which have also "Prefered"). "None" is converted to 0. Alex
12 lines
478 B
CMake
12 lines
478 B
CMake
SET(CMAKE_ASM@ASM_DIALECT@_COMPILER "@_CMAKE_ASM_COMPILER@")
|
|
SET(CMAKE_ASM@ASM_DIALECT@_COMPILER_ARG1 "@_CMAKE_ASM_COMPILER_ARG1@")
|
|
SET(CMAKE_AR "@CMAKE_AR@")
|
|
SET(CMAKE_RANLIB "@CMAKE_RANLIB@")
|
|
SET(CMAKE_LINKER "@CMAKE_LINKER@")
|
|
SET(CMAKE_ASM@ASM_DIALECT@_COMPILER_LOADED 1)
|
|
SET(CMAKE_ASM@ASM_DIALECT@_COMPILER_ENV_VAR "@_CMAKE_ASM_COMPILER_ENV_VAR@")
|
|
|
|
SET(CMAKE_ASM@ASM_DIALECT@_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
|
SET(CMAKE_ASM@ASM_DIALECT@_LINKER_PREFERENCE 0)
|
|
|