File tree 2 files changed +8
-4
lines changed 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -343,11 +343,12 @@ macro(xeus_cpp_create_target target_name linkage output_name)
343
343
if (MSVC )
344
344
target_compile_options (${target_name} PRIVATE "/MD$<$<CONFIG:Debug>:d>" )
345
345
endif ()
346
- elseif (NOT EMSCRIPTEN)
346
+ # elseif (NOT EMSCRIPTEN)
347
+ else ()
347
348
# Curl initialised specifically for xassist
348
349
target_link_libraries (${target_name} PUBLIC ${XEUS_CPP_XEUS_TARGET} clangCppInterOp pugixml argparse::argparse curl)
349
- else ()
350
- target_link_libraries (${target_name} PUBLIC ${XEUS_CPP_XEUS_TARGET} clangCppInterOp pugixml argparse::argparse)
350
+ # else ()
351
+ # target_link_libraries(${target_name} PUBLIC ${XEUS_CPP_XEUS_TARGET} clangCppInterOp pugixml argparse::argparse)
351
352
endif ()
352
353
353
354
if (WIN32 OR CYGWIN )
Original file line number Diff line number Diff line change @@ -80,7 +80,10 @@ class XCppTests(jupyter_kernel_test.KernelTests):
80
80
code_hello_world = '#include <iostream>\n std::cout << "hello, world";'
81
81
82
82
# Code that should cause (any) text to be written to STDERR
83
- code_stderr = '#include <iostream>\n std::cerr << "oops";'
83
+ code_stderr = """
84
+ #include <iostream>
85
+ std::cerr << "oops" << std::endl;
86
+ """
84
87
85
88
# Pager: code that should display something (anything) in the pager
86
89
code_page_something = "?std::vector"
You can’t perform that action at this time.
0 commit comments