Skip to content

Commit 2537a2b

Browse files
authored
Make sure ORT lib location is known to cmake (#358)
* make sure ORT lib location is known to cmake * trigger CI
1 parent 83ae2d9 commit 2537a2b

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

cmake_files/dependencies.cmake

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ find_package(Boost COMPONENTS system filesystem REQUIRED)
2626

2727
find_package(yaml-cpp REQUIRED)
2828

29+
if (onnxrt)
30+
find_package(onnxruntime REQUIRED)
31+
endif()
32+
2933
find_package(sopt REQUIRED)
3034
set(PURIFY_ONNXRT FALSE)
3135
if (onnxrt)

cmake_files/version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
set(${PROJECT_NAME}_VERSION 3.1.0)
2+
set(${PROJECT_NAME}_VERSION 4.2.0)
33

44
# Tries and get git hash first
55
find_package(Git)

data/config/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Config file for Purify
2-
Version: 3.1.0
2+
Version: 4.2.0
33
GeneralConfiguration:
44
InputOutput:
55
input:

data/config/test_measurements_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Config file for Purify
2-
Version: 3.1.0
2+
Version: 4.2.0
33
GeneralConfiguration:
44
InputOutput:
55
input:

data/config/test_simulation_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Config file for Purify
2-
Version: 3.1.0
2+
Version: 4.2.0
33
GeneralConfiguration:
44
InputOutput:
55
input:

0 commit comments

Comments
 (0)