File tree 2 files changed +5
-9
lines changed 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -343,12 +343,11 @@ 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)
347
- else ()
346
+ elseif (NOT EMSCRIPTEN)
348
347
# Curl initialised specifically for xassist
349
348
target_link_libraries (${target_name} PUBLIC ${XEUS_CPP_XEUS_TARGET} clangCppInterOp pugixml argparse::argparse curl)
350
- # else ()
351
- # target_link_libraries(${target_name} PUBLIC ${XEUS_CPP_XEUS_TARGET} clangCppInterOp pugixml argparse::argparse)
349
+ else ()
350
+ target_link_libraries (${target_name} PUBLIC ${XEUS_CPP_XEUS_TARGET} clangCppInterOp pugixml argparse::argparse)
352
351
endif ()
353
352
354
353
if (WIN32 OR CYGWIN )
Original file line number Diff line number Diff line change @@ -77,13 +77,10 @@ class XCppTests(jupyter_kernel_test.KernelTests):
77
77
language_name = 'C++'
78
78
79
79
# Code that should write the exact string `hello, world` to STDOUT
80
- code_hello_world = '#include <iostream>\n std::cout << "hello, world";'
80
+ code_hello_world = '#include <iostream>\n std::cout << "hello, world" << std::endl ;'
81
81
82
82
# Code that should cause (any) text to be written to STDERR
83
- code_stderr = """
84
- #include <iostream>
85
- std::cerr << "oops" << std::endl;
86
- """
83
+ code_stderr = '#include <iostream>\n std::cerr << "oops" << std::endl;'
87
84
88
85
# Pager: code that should display something (anything) in the pager
89
86
code_page_something = "?std::vector"
You can’t perform that action at this time.
0 commit comments