1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Update PocoMacros.cmake

This commit is contained in:
Sandu Liviu Catalin 2021-09-05 00:43:55 +03:00
parent cbfed04bc9
commit 9f808376b9

View File

@ -39,21 +39,21 @@ if(WIN32)
endif() endif()
endforeach() endforeach()
endif(X64) endif(X64)
endif() find_program(CMAKE_MC_COMPILER mc.exe HINTS "${sdk_bindir}" "${kit_bindir}" "${kit81_bindir}" ${kit10_bindir}
find_program(CMAKE_MC_COMPILER mc.exe HINTS "${sdk_bindir}" "${kit_bindir}" "${kit81_bindir}" ${kit10_bindir} DOC "path to message compiler")
elseif ("${CMAKE_GENERATOR}" MATCHES "MSYS" OR "${CMAKE_GENERATOR}" MATCHES "^(CodeBlocks)?.*(MinGW)?.*")
get_filename_component(MINGW_BIN_PATH ${CMAKE_C_COMPILER} DIRECTORY REALPATH)
if(NOT IS_DIRECTORY ${MINGW_BIN_PATH})
get_filename_component(MINGW_BIN_PATH ${CMAKE_CXX_COMPILER} DIRECTORY REALPATH)
endif()
find_program(CMAKE_MC_COMPILER windmc.exe HINTS "${MINGW_BIN_PATH}"
DOC "path to message compiler") DOC "path to message compiler")
elseif ("${CMAKE_GENERATOR}" MATCHES "MSYS" OR "${CMAKE_GENERATOR}" MATCHES "^(CodeBlocks)?.*(MinGW)?.*")
get_filename_component(MINGW_BIN_PATH ${CMAKE_C_COMPILER} DIRECTORY REALPATH)
if(NOT IS_DIRECTORY ${MINGW_BIN_PATH})
get_filename_component(MINGW_BIN_PATH ${CMAKE_CXX_COMPILER} DIRECTORY REALPATH)
endif() endif()
find_program(CMAKE_MC_COMPILER windmc.exe HINTS "${MINGW_BIN_PATH}" if(NOT CMAKE_MC_COMPILER)
DOC "path to message compiler") message(FATAL_ERROR "message compiler not found: required to build")
if(NOT CMAKE_MC_COMPILER) endif(NOT CMAKE_MC_COMPILER)
message(FATAL_ERROR "message compiler not found: required to build") message(STATUS "Found message compiler: ${CMAKE_MC_COMPILER}")
endif(NOT CMAKE_MC_COMPILER) mark_as_advanced(CMAKE_MC_COMPILER)
message(STATUS "Found message compiler: ${CMAKE_MC_COMPILER}")
mark_as_advanced(CMAKE_MC_COMPILER)
endif(WIN32) endif(WIN32)
#=============================================================================== #===============================================================================