diff --git a/config/CMakeLists.txt b/config/CMakeLists.txt index c6c4cde..004e885 100644 --- a/config/CMakeLists.txt +++ b/config/CMakeLists.txt @@ -1,4 +1,4 @@ configure_file( "config.h.in" - "${CMAKE_BINARY_DIR}/configured_files/include/config.h" ESCAPE_QUOTES + "${CMAKE_BINARY_DIR}/configured_files/include/config_platform.h" ESCAPE_QUOTES ) diff --git a/sample/sample.cpp b/sample/sample.cpp index 0619a27..f831d2d 100644 --- a/sample/sample.cpp +++ b/sample/sample.cpp @@ -11,7 +11,7 @@ #include #include "Models.h" #include "modelRegister.h" -#include "config.h" +#include "config_platform.h" const std::string PATH = { platform_data_path.begin(), platform_data_path.end() }; diff --git a/src/commands/b_best.cpp b/src/commands/b_best.cpp index 4e1adc5..f884baf 100644 --- a/src/commands/b_best.cpp +++ b/src/commands/b_best.cpp @@ -5,7 +5,7 @@ #include "common/Paths.h" #include "common/Colors.h" #include "best/BestResults.h" -#include "config.h" +#include "config_platform.h" void manageArguments(argparse::ArgumentParser& program) { diff --git a/src/commands/b_grid.cpp b/src/commands/b_grid.cpp index 6074a9d..6303aec 100644 --- a/src/commands/b_grid.cpp +++ b/src/commands/b_grid.cpp @@ -11,7 +11,7 @@ #include "common/Colors.h" #include "common/DotEnv.h" #include "grid/GridSearch.h" -#include "config.h" +#include "config_platform.h" using json = nlohmann::ordered_json; const int MAXL = 133; diff --git a/src/commands/b_list.cpp b/src/commands/b_list.cpp index c9da4d9..5309101 100644 --- a/src/commands/b_list.cpp +++ b/src/commands/b_list.cpp @@ -13,7 +13,7 @@ #include "results/ResultsDatasetConsole.h" #include "results/ResultsDataset.h" #include "results/ResultsDatasetExcel.h" -#include "config.h" +#include "config_platform.h" void list_datasets(argparse::ArgumentParser& program) diff --git a/src/commands/b_main.cpp b/src/commands/b_main.cpp index ab1de9a..e4a02c4 100644 --- a/src/commands/b_main.cpp +++ b/src/commands/b_main.cpp @@ -7,7 +7,7 @@ #include "common/Paths.h" #include "main/Models.h" #include "main/modelRegister.h" -#include "config.h" +#include "config_platform.h" using json = nlohmann::ordered_json; diff --git a/src/commands/b_manage.cpp b/src/commands/b_manage.cpp index 6d75e6e..17c1465 100644 --- a/src/commands/b_manage.cpp +++ b/src/commands/b_manage.cpp @@ -5,7 +5,7 @@ #include #include "manage/ManageScreen.h" #include -#include "config.h" +#include "config_platform.h" platform::ManageScreen* manager = nullptr; diff --git a/tests/TestPlatform.cpp b/tests/TestPlatform.cpp index 5450385..108d8ec 100644 --- a/tests/TestPlatform.cpp +++ b/tests/TestPlatform.cpp @@ -9,7 +9,7 @@ #include "folding.hpp" #include #include -#include "config.h" +#include "config_platform.h" TEST_CASE("Test Platform version", "[Platform]") diff --git a/tests/TestResult.cpp b/tests/TestResult.cpp index 8c978a7..81586bb 100644 --- a/tests/TestResult.cpp +++ b/tests/TestResult.cpp @@ -7,7 +7,7 @@ #include "common/DotEnv.h" #include "common/Datasets.h" #include "common/Paths.h" -#include "config.h" +#include "config_platform.h" TEST_CASE("ZeroR comparison in reports", "[Report]") diff --git a/tests/TestScores.cpp b/tests/TestScores.cpp index c920c9a..111ae7e 100644 --- a/tests/TestScores.cpp +++ b/tests/TestScores.cpp @@ -9,7 +9,7 @@ #include "common/Paths.h" #include "common/Colors.h" #include "main/Scores.h" -#include "config.h" +#include "config_platform.h" using json = nlohmann::ordered_json; auto epsilon = 1e-4; diff --git a/tests/TestUtils.cpp b/tests/TestUtils.cpp index 80f9893..32126a8 100644 --- a/tests/TestUtils.cpp +++ b/tests/TestUtils.cpp @@ -1,5 +1,5 @@ #include "TestUtils.h" -#include "config.h" +#include "config_platform.h" class Paths { public: