We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb234b0 commit 4a8bc5bCopy full SHA for 4a8bc5b
CMakeLists.txt
@@ -203,10 +203,15 @@ set(XEUS_CPP_SRC
203
src/xoptions.cpp
204
src/xparser.cpp
205
src/xutils.cpp
206
- src/xmagics/xassist.hpp
207
- src/xmagics/xassist.cpp
208
)
209
+if(NOT EMSCRIPTEN)
+ list(APPEND XEUS_CPP_SRC
210
+ src/xmagics/xassist.hpp
211
+ src/xmagics/xassist.cpp
212
+ )
213
+endif()
214
+
215
if(EMSCRIPTEN)
216
list(APPEND XEUS_CPP_SRC src/xinterpreter_wasm.cpp)
217
endif()
src/xinterpreter.cpp
@@ -28,7 +28,9 @@
28
#include "xinput.hpp"
29
#include "xinspect.hpp"
30
#include "xmagics/os.hpp"
31
+#ifndef EMSCRIPTEN
32
#include "xmagics/xassist.hpp"
33
+#endif
34
#include "xparser.hpp"
35
#include "xsystem.hpp"
36
0 commit comments