Skip to content

Commit

Permalink
onnx: disable on emscripten
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Dec 20, 2024
1 parent e6e1384 commit 056dbb1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
#return()

if(EMSCRIPTEN)
return()
endif()

if(NOT TARGET score_lib_base)
include("${SCORE_SOURCE_DIR}/cmake/ScoreExternalAddon.cmake")
endif()
Expand Down

0 comments on commit 056dbb1

Please sign in to comment.