File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ RUN cd /deps/xeus/build && \
6969##################################################################
7070
7171RUN mkdir -p /deps/xeus-lite/build
72- RUN git clone https://github.com/jupyter-xeus/xeus-lite.git /deps/xeus-lite/src
72+ RUN git clone --branch 1.0.0 https://github.com/jupyter-xeus/xeus-lite.git /deps/xeus-lite/src
7373
7474RUN cd /deps/xeus-lite/build && \
7575 emcmake cmake ../src \
Original file line number Diff line number Diff line change @@ -383,10 +383,10 @@ if(XEUS_LUA_EMSCRIPTEN_WASM_BUILD)
383383 include (WasmBuildOptions)
384384 find_package (xeus-lite REQUIRED)
385385 message (STATUS ${XEUS_LUA_LUA_LIBRARIES} )
386- add_executable (xeus_kernel src/main_emscripten_kernel.cpp )
387- target_link_libraries (xeus_kernel xeus-lua-static xeus-lite)
388- target_compile_features (xeus_kernel PRIVATE cxx_std_17)
389- xeus_wasm_link_options(xeus_kernel "web,worker" )
386+ add_executable (xlua-lite src/main_emscripten_kernel.cpp )
387+ target_link_libraries (xlua-lite xeus-lua-static xeus-lite)
388+ target_compile_features (xlua-lite PRIVATE cxx_std_17)
389+ xeus_wasm_link_options(xlua-lite "web,worker" )
390390endif ()
391391
392392
Original file line number Diff line number Diff line change 1212
1313// Project version
1414#define XEUS_LUA_VERSION_MAJOR 0
15- #define XEUS_LUA_VERSION_MINOR 6
16- #define XEUS_LUA_VERSION_PATCH 2
15+ #define XEUS_LUA_VERSION_MINOR 7
16+ #define XEUS_LUA_VERSION_PATCH 0
1717
1818// Composing the version string from major, minor and patch
1919#define XEUS_LUA_CONCATENATE (A, B ) XEUS_LUA_CONCATENATE_IMPL(A, B)
You can’t perform that action at this time.
0 commit comments