File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -118,8 +118,6 @@ endif ()
118
118
# ============
119
119
120
120
set (XEUS_PYTHON_SRC
121
- src/xcomm.cpp
122
- src/xcomm.hpp
123
121
src/xdebugger.cpp
124
122
src/xdisplay.cpp
125
123
src/xdisplay.hpp
@@ -138,6 +136,8 @@ set(XEUS_PYTHON_SRC
138
136
src/xnullcontext.hpp
139
137
src/xptvsd_client.cpp
140
138
src/xptvsd_client.hpp
139
+ src/xpython_kernel.cpp
140
+ src/xpython_kernel.hpp
141
141
src/xstream.cpp
142
142
src/xstream.hpp
143
143
src/xtraceback.cpp
@@ -184,7 +184,7 @@ macro(xpyt_set_common_options target_name)
184
184
CMAKE_CXX_COMPILER_ID MATCHES "Intel" )
185
185
186
186
target_compile_options (${target_name} PUBLIC -Wunused-parameter -Wextra -Wreorder)
187
-
187
+
188
188
# Mtune generic/native
189
189
if (XPYT_DISABLE_ARCH_NATIVE AND NOT XPYT_DISABLE_TUNE_GENERIC)
190
190
target_compile_options (${target_name} PUBLIC -mtune=generic)
Original file line number Diff line number Diff line change 25
25
#include " xeus-python/xinterpreter.hpp"
26
26
#include " xeus-python/xeus_python_config.hpp"
27
27
28
- #include " xcomm .hpp"
28
+ #include " xpython_kernel .hpp"
29
29
#include " xdisplay.hpp"
30
30
#include " xinput.hpp"
31
31
#include " xinspect.hpp"
Original file line number Diff line number Diff line change 22
22
#include " pybind11/functional.h"
23
23
#include " pybind11/eval.h"
24
24
25
- #include " xcomm .hpp"
25
+ #include " xpython_kernel .hpp"
26
26
#include " xutils.hpp"
27
27
#include " xinteractiveshell.hpp"
28
28
File renamed without changes.
You can’t perform that action at this time.
0 commit comments