aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorJukka Jylänki <jujjyl@gmail.com>2013-04-06 23:26:15 +0300
committerJukka Jylänki <jujjyl@gmail.com>2013-04-07 10:26:35 +0300
commit1c4c4816b7030b1071ede7bf6d794f0cd65b391b (patch)
tree7d24f11b7089a2b304c93bc8c71ca5bce8083a41 /cmake
parent5a642b1a7ea78ab5e5a60f83a37dca46623559e0 (diff)
Use .bat files to route 'python emxxx' to 'emxxx' on Windows. Remove reference to juj/vs-tool emxxx.exe in favor of the new .bat files.
Diffstat (limited to '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)