# # Copyright (c) 2008-2015 the Urho3D project. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # # Based on cmake/Modules/Platform/Emscripten.cmake from https://github.com/kripken/emscripten cmake_minimum_required (VERSION 2.6.3) if (CMAKE_TOOLCHAIN_FILE) # Reference toolchain variable to suppress "unused variable" warning mark_as_advanced (CMAKE_TOOLCHAIN_FILE) endif () # this one is important set (CMAKE_SYSTEM_NAME Linux) # this one not so much set (CMAKE_SYSTEM_VERSION 1) # specify the cross compiler if (CMAKE_HOST_WIN32) set (TOOL_EXT .bat) endif () if (NOT EMSCRIPTEN_ROOT_PATH) if (DEFINED ENV{EMSCRIPTEN_ROOT_PATH}) file (TO_CMAKE_PATH $ENV{EMSCRIPTEN_ROOT_PATH} EMSCRIPTEN_ROOT_PATH) elseif (DEFINED ENV{EMSCRIPTEN}) file (TO_CMAKE_PATH $ENV{EMSCRIPTEN} EMSCRIPTEN_ROOT_PATH) endif () endif () if (NOT EXISTS ${EMSCRIPTEN_ROOT_PATH}/emcc${TOOL_EXT}) message (FATAL_ERROR "Could not find Emscripten cross compilation tool. " "Use EMSCRIPTEN_ROOT_PATH environment variable or build option to specify the location of the toolchain. " "Or use the canonical EMSCRIPTEN environment variable by calling emsdk_env script.") endif () if (NOT EMCC_VERSION) execute_process (COMMAND ${EMSCRIPTEN_ROOT_PATH}/emcc${TOOL_EXT} --version RESULT_VARIABLE EXIT_CODE OUTPUT_VARIABLE EMCC_VERSION ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) if (EXIT_CODE EQUAL 0) string (REGEX MATCH "[^ .]+\\.[^.]+\\.[^ ]+" EMCC_VERSION "${EMCC_VERSION}") # Stringify as it could be empty when an error has occured else () message (FATAL_ERROR "Could not determine the emcc version. Make sure you have installed and activated the Emscripten SDK correctly.") endif () set (EMCC_VERSION ${EMCC_VERSION} CACHE STRING "emcc version being used in this build tree") # Cache the result even when there was error in determining the version endif () set (COMPILER_PATH ${EMSCRIPTEN_ROOT_PATH}) # ccache support could only be enabled for emcc prior to 1.31.3 when the CCACHE_CPP2 env var is also set to 1, newer emcc version could enable ccache support without this caveat (see https://github.com/kripken/emscripten/issues/3365 for more detail) # The CCACHE_CPP2 env var tells ccache to fallback to use original input source file instead of preprocessed one when passing on the compilation task to the compiler proper if (NOT CMAKE_C_COMPILER AND "$ENV{USE_CCACHE}" AND NOT CMAKE_HOST_WIN32 AND ("$ENV{CCACHE_CPP2}" OR NOT EMCC_VERSION VERSION_LESS 1.31.3)) if (NOT $ENV{PATH} MATCHES ${EMSCRIPTEN_ROOT_PATH}) message (FATAL_ERROR "The bin directory containing the compiler toolchain (${EMSCRIPTEN_ROOT_PATH}) has not been added in the PATH environment variable. " "This is required to enable ccache support for Emscripten compiler toolchain.") endif () execute_process (COMMAND which ccache RESULT_VARIABLE EXIT_CODE OUTPUT_VARIABLE CCACHE ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) if (EXIT_CODE EQUAL 0) foreach (name emcc em++) execute_process (COMMAND ${CMAKE_COMMAND} -E create_symlink ${CCACHE} ${CMAKE_BINARY_DIR}/${name}) endforeach () set (COMPILER_PATH ${CMAKE_BINARY_DIR}) else () message (WARNING "ccache may not have been installed on this host system. " "This is required to enable ccache support for Emscripten compiler toolchain. CMake has been configured to use the actual compiler toolchain instead of ccache. " "In order to rectify this, the build tree must be regenerated after installing ccache.") endif () endif () set (CMAKE_C_COMPILER ${COMPILER_PATH}/emcc${TOOL_EXT} CACHE PATH "C compiler") set (CMAKE_CXX_COMPILER ${COMPILER_PATH}/em++${TOOL_EXT} CACHE PATH "C++ compiler") set (CMAKE_AR ${EMSCRIPTEN_ROOT_PATH}/emar${TOOL_EXT} CACHE PATH "archive") set (CMAKE_RANLIB ${EMSCRIPTEN_ROOT_PATH}/emranlib${TOOL_EXT} CACHE PATH "ranlib") # Specific to Emscripten set (EMRUN ${EMSCRIPTEN_ROOT_PATH}/emrun${TOOL_EXT} CACHE PATH "emrun") set (EMPACKAGER python ${EMSCRIPTEN_ROOT_PATH}/tools/file_packager.py CACHE PATH "file_packager.py") # specify the system root if (NOT EMSCRIPTEN_SYSROOT) if (DEFINED ENV{EMSCRIPTEN_SYSROOT}) file (TO_CMAKE_PATH $ENV{EMSCRIPTEN_SYSROOT} EMSCRIPTEN_SYSROOT) else () set (EMSCRIPTEN_SYSROOT ${EMSCRIPTEN_ROOT_PATH}/system) endif () if (NOT EXISTS ${EMSCRIPTEN_SYSROOT}) message (FATAL_ERROR "Could not find Emscripten system root. " "Use EMSCRIPTEN_SYSROOT environment variable or build option to specify the location of system root.") endif () set (EMSCRIPTEN_ROOT_PATH ${EMSCRIPTEN_ROOT_PATH} CACHE STRING "Root path to Emscripten cross-compiler tools (Emscripten cross-compiling build only)" FORCE) set (EMSCRIPTEN_SYSROOT ${EMSCRIPTEN_SYSROOT} CACHE PATH "Path to Emscripten system root (Emscripten cross-compiling build only)" FORCE) endif () set (CMAKE_FIND_ROOT_PATH ${EMSCRIPTEN_SYSROOT}) # only search libraries, and headers in the target directories set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) # Since currently CMake does not able to identify Emscripten cross compiler, so set the compiler identification explicitly # However, don't force it so the rest of the compiler checks are still being performed set (CMAKE_C_COMPILER_ID_RUN TRUE) set (CMAKE_C_COMPILER_ID Clang) set (CMAKE_CXX_COMPILER_ID_RUN TRUE) set (CMAKE_CXX_COMPILER_ID Clang) # Set required compiler flags for internal CMake various check_xxx() macros which rely on the error to occur for the check to be performed correctly set (CMAKE_REQUIRED_FLAGS "-s ERROR_ON_UNDEFINED_SYMBOLS=1") # Use response files on Windows host if (CMAKE_HOST_WIN32) foreach (lang C CXX) foreach (cat LIBRARIES OBJECTS INCLUDES) set (CMAKE_${lang}_USE_RESPONSE_FILE_FOR_${cat} 1) endforeach () set (CMAKE_${lang}_CREATE_STATIC_LIBRARY " cr ") endforeach () endif () set (EMSCRIPTEN 1)