Update project version to 1.1.1

Fix CMakeLists and different configurations to fix vcpkg build & installation
Fix sample build
Update CHANGELOG
This commit is contained in:
2025-05-08 12:33:11 +02:00
parent 5f95117dd4
commit 7f6f49b3d0
11 changed files with 125 additions and 97 deletions

View File

@@ -1,15 +1,16 @@
cmake_minimum_required(VERSION 3.20)
project(bayesnet_sample)
project(bayesnet_sample VERSION 0.1.0 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_BUILD_TYPE Release)
find_package(Torch CONFIG REQUIRED)
find_package(bayesnet CONFIG REQUIRED)
find_package(fimdlp CONFIG REQUIRED)
find_package(folding CONFIG REQUIRED)
find_package(arff-files CONFIG REQUIRED)
find_package(nlohman_json CONFIG REQUIRED)
find_package(bayesnet CONFIG REQUIRED)
add_executable(bayesnet_sample sample.cc)
target_link_libraries(bayesnet_sample PRIVATE
@@ -17,6 +18,5 @@ target_link_libraries(bayesnet_sample PRIVATE
arff-files::arff-files
"${TORCH_LIBRARIES}"
bayesnet::bayesnet
nlohmann_json::nlohmann_json
folding::folding
)