Skip to content

Commit

Permalink
renamed targert
Browse files Browse the repository at this point in the history
  • Loading branch information
DerThorsten committed Jan 19, 2024
1 parent 149acbd commit 47f62dc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,13 @@ endif()
if (EMSCRIPTEN)
include(WasmBuildOptions)
find_package(xeus-lite REQUIRED)
add_executable(xnelson_wasm src/main_emscripten_kernel.cpp)
target_link_libraries(xnelson_wasm PRIVATE xeus-lite)
target_compile_features(xnelson_wasm PRIVATE cxx_std_17)
target_compile_options(xnelson_wasm PRIVATE -fPIC)
xnelson_set_kernel_options(xnelson_wasm)
xeus_wasm_compile_options(xnelson_wasm)
xeus_wasm_link_options(xnelson_wasm "web,worker")
add_executable(xnelson src/main_emscripten_kernel.cpp)
target_link_libraries(xnelson PRIVATE xeus-lite)
target_compile_features(xnelson PRIVATE cxx_std_17)
target_compile_options(xnelson PRIVATE -fPIC)
xnelson_set_kernel_options(xnelson)
xeus_wasm_compile_options(xnelson)
xeus_wasm_link_options(xnelson "web,worker")
endif ()

# Installation
Expand Down

0 comments on commit 47f62dc

Please sign in to comment.