Skip to content

Commit

Permalink
Make sure ORT lib location is known to cmake (#358)
Browse files Browse the repository at this point in the history
* make sure ORT lib location is known to cmake

* trigger CI
  • Loading branch information
20DM authored Oct 9, 2024
1 parent 83ae2d9 commit 2537a2b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions cmake_files/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ find_package(Boost COMPONENTS system filesystem REQUIRED)

find_package(yaml-cpp REQUIRED)

if (onnxrt)
find_package(onnxruntime REQUIRED)
endif()

find_package(sopt REQUIRED)
set(PURIFY_ONNXRT FALSE)
if (onnxrt)
Expand Down
2 changes: 1 addition & 1 deletion cmake_files/version.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

set(${PROJECT_NAME}_VERSION 3.1.0)
set(${PROJECT_NAME}_VERSION 4.2.0)

# Tries and get git hash first
find_package(Git)
Expand Down
2 changes: 1 addition & 1 deletion data/config/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Config file for Purify
Version: 3.1.0
Version: 4.2.0
GeneralConfiguration:
InputOutput:
input:
Expand Down
2 changes: 1 addition & 1 deletion data/config/test_measurements_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Config file for Purify
Version: 3.1.0
Version: 4.2.0
GeneralConfiguration:
InputOutput:
input:
Expand Down
2 changes: 1 addition & 1 deletion data/config/test_simulation_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Config file for Purify
Version: 3.1.0
Version: 4.2.0
GeneralConfiguration:
InputOutput:
input:
Expand Down

0 comments on commit 2537a2b

Please sign in to comment.