Update to include BayesNet 1.0.3

This commit is contained in:
2024-02-25 18:25:10 +01:00
parent 731e03681a
commit 82f2c36621
61 changed files with 25 additions and 80 deletions

View File

@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.20)
project(Platform
VERSION 1.0.1
VERSION 1.0.2
DESCRIPTION "Platform to run Experiments with classifiers."
HOMEPAGE_URL "https://github.com/rmontanana/platform"
LANGUAGES CXX
@@ -78,11 +78,11 @@ message("XLSXWRITER_LIB=${XLSXWRITER_LIB}")
# Subdirectories
# --------------
set(Platform_MODULES ${Platform_SOURCE_DIR}/src/Platform/modules/)
set(Platform_MODULES ${Platform_SOURCE_DIR}/src/modules/)
add_subdirectory(config)
add_subdirectory(src/Platform)
add_subdirectory(src)
add_subdirectory(sample)
file(GLOB Platform_SOURCES CONFIGURE_DEPENDS ${Platform_SOURCE_DIR}/src/Platform/*.cc)
file(GLOB Platform_SOURCES CONFIGURE_DEPENDS ${Platform_SOURCE_DIR}/src/*.cc)
# Testing
# -------