c++ - Emscripten can't find path to cmake -
i've gone on instructions several times, looked in countless forums, , still can't resolve issue.
i'm running windows 10, , trying install emscripten. i've got emscripten installed:
i run
# fetch latest registry of available tools. emsdk update
followed by
# download , install latest sdk tools. emsdk install latest
but continues throw same warning being unable find path cmake.
i've downloaded , installed cmake-3.3.2-win32-x86. cannot create path installation though, because says file length long. odd, because installed here:
c:\program files (x86)\cmake\bin
i figured set path myself, as seen in post. therefore, used command after image above:
set path="c:\program files (x86)\cmake\bin\";%path%
and have same issue. i'm fresh out of ideas. have fact 64 bit versions of clang , sdk being installed, cmake comes in 32bit flavor?
quotes aren't needed in path environmental variables on windows.
set path=c:\program files (x86)\cmake\bin\;%path%
Comments
Post a Comment