Delete emscripten.cmake
This file is not needed at this point. EMSDK provides a toolchain file that has a lot more things in it and is better supported. Project currently works fine with the documentation provided in Emscripten SDK on how to build projects.
This commit is contained in:
parent
551597d579
commit
dc1fc4815d
|
|
@ -1,23 +0,0 @@
|
|||
SET(CMAKE_SYSTEM_NAME Linux)
|
||||
SET(CMAKE_SYSTEM_PROCESSOR x86)
|
||||
|
||||
if (CMAKE_HOST_WIN32)
|
||||
SET(EMSCRIPTEN_EXTENSION ".bat")
|
||||
else ()
|
||||
SET(EMSCRIPTEN_EXTENSION "")
|
||||
endif()
|
||||
|
||||
SET(CMAKE_C_COMPILER emcc${EMSCRIPTEN_EXTENSION})
|
||||
SET(CMAKE_CXX_COMPILER em++${EMSCRIPTEN_EXTENSION})
|
||||
|
||||
if(NOT DEFINED CMAKE_AR)
|
||||
find_program(CMAKE_AR NAMES emar${EMSCRIPTEN_EXTENSION})
|
||||
endif()
|
||||
if(NOT DEFINED CMAKE_RANLIB)
|
||||
find_program(CMAKE_RANLIB NAMES emranlib${EMSCRIPTEN_EXTENSION})
|
||||
endif()
|
||||
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE BOTH)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
|
||||
Loading…
Reference in New Issue
Block a user