File tree 3 files changed +7
-7
lines changed
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 && \
69
69
##################################################################
70
70
71
71
RUN 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
73
73
74
74
RUN cd /deps/xeus-lite/build && \
75
75
emcmake cmake ../src \
Original file line number Diff line number Diff line change @@ -383,10 +383,10 @@ if(XEUS_LUA_EMSCRIPTEN_WASM_BUILD)
383
383
include (WasmBuildOptions)
384
384
find_package (xeus-lite REQUIRED)
385
385
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" )
390
390
endif ()
391
391
392
392
Original file line number Diff line number Diff line change 12
12
13
13
// Project version
14
14
#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
17
17
18
18
// Composing the version string from major, minor and patch
19
19
#define XEUS_LUA_CONCATENATE (A, B ) XEUS_LUA_CONCATENATE_IMPL(A, B)
You can’t perform that action at this time.
0 commit comments