aboutsummaryrefslogtreecommitdiff
path: root/cmake/Platform/Emscripten.cmake
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-04-08 20:16:44 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-04-08 20:16:44 -0700
commit11f19e615c6046751c3a578e67ca027cfaf55367 (patch)
tree982353ab29bc497367a359686d6656b72d1cfa52 /cmake/Platform/Emscripten.cmake
parenteb50cbdde56761b31ce57f38557da769297b76ec (diff)
parent1c4c4816b7030b1071ede7bf6d794f0cd65b391b (diff)
Merge pull request #1039 from juj/no_emcc_exe
No emcc exe
Diffstat (limited to 'cmake/Platform/Emscripten.cmake')
-rw-r--r--cmake/Platform/Emscripten.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmake/Platform/Emscripten.cmake b/cmake/Platform/Emscripten.cmake
index 4b9c6572..aafd38a8 100644
--- a/cmake/Platform/Emscripten.cmake
+++ b/cmake/Platform/Emscripten.cmake
@@ -24,10 +24,10 @@ endif()
# Specify the compilers to use for C and C++
if ("${CMAKE_C_COMPILER}" STREQUAL "")
- set(CMAKE_C_COMPILER "emcc.exe")
- set(CMAKE_CXX_COMPILER "em++.exe")
- set(CMAKE_AR "emar.exe")
- set(CMAKE_RANLIB "emranlib.exe")
+ set(CMAKE_C_COMPILER "emcc.bat")
+ set(CMAKE_CXX_COMPILER "em++.bat")
+ set(CMAKE_AR "emar.bat")
+ set(CMAKE_RANLIB "emranlib.bat")
endif()
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)