Warning, /EICrecon/src/algorithms/onnx/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 cmake_minimum_required(VERSION 3.16)
0002
0003 set(PLUGIN_NAME "algorithms_onnx")
0004
0005 # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets
0006 # Setting default includes, libraries and installation paths
0007 plugin_add(${PLUGIN_NAME} WITH_SHARED_LIBRARY WITHOUT_PLUGIN)
0008
0009 # The macro grabs sources as *.cc *.cpp *.c and headers as *.h *.hh *.hpp Then
0010 # correctly sets sources for ${_name}_plugin and ${_name}_library targets Adds
0011 # headers to the correct installation directory
0012 plugin_glob_all(${PLUGIN_NAME})
0013
0014 # Find dependencies
0015 plugin_add_event_model(${PLUGIN_NAME})
0016 plugin_add_onnxruntime(${PLUGIN_NAME})
0017
0018 # The macro grabs sources as *.cc *.cpp *.c and headers as *.h *.hh *.hpp Then
0019 # correctly sets sources for ${_name}_plugin and ${_name}_library targets Adds
0020 # headers to the correct installation directory
0021 plugin_glob_all(${PLUGIN_NAME})