Skip to content

Commit

Permalink
Update xeus-cpp-lite example notebook (compiler-research#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
anutosh491 authored Jan 20, 2025
1 parent 232e345 commit 5fbd359
Show file tree
Hide file tree
Showing 3 changed files with 471 additions and 367 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/deploy-github-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ jobs:
--XeusAddon.prefix=${{ env.PREFIX }} \
--contents README.md \
--contents notebooks/xeus-cpp-lite-demo.ipynb \
--contents notebooks/images/marie.png \
--contents notebooks/audio/audio.wav \
--output-dir dist
- name: Upload artifact
Expand Down
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,11 @@ set(XCPP_HEADERS
add_library(xeus-cpp-headers INTERFACE)
set_target_properties(xeus-cpp-headers PROPERTIES PUBLIC_HEADER "${XCPP_HEADERS}")

install(TARGETS xeus-cpp-headers PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/xcpp)
if (EMSCRIPTEN)
install(TARGETS xeus-cpp-headers PUBLIC_HEADER DESTINATION ${SYSROOT_PATH}/include/xcpp)
else ()
install(TARGETS xeus-cpp-headers PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/xcpp)
endif()

# xeus-cpp
# ========
Expand Down
Loading

0 comments on commit 5fbd359

Please sign in to comment.