From 5c706754480eb36a4d7cd84b21ca26f439790c20 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Wed, 26 Feb 2025 20:14:17 -0700 Subject: [PATCH] Increase number of samples, add entropy to isle and config --- .github/workflows/build.yml | 4 ++-- CMakeLists.txt | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e9ec8be3..76e3dd32 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -106,7 +106,7 @@ jobs: runs-on: windows-latest strategy: matrix: - instance: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] + instance: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] steps: - uses: actions/checkout@v4 @@ -229,7 +229,7 @@ jobs: run: | reccmp-project detect --what original --search-path legobin reccmp-project detect --what recompiled --search-path build - + - name: Denoise Accuracy shell: bash run: | diff --git a/CMakeLists.txt b/CMakeLists.txt index 6ecbe37c..d66a1706 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -589,6 +589,12 @@ if (MSVC_FOR_DECOMP) foreach(tgt IN LISTS lego1_targets beta10_targets) target_compile_options(${tgt} PRIVATE /FI${PROJECT_SOURCE_DIR}/entropy.h) endforeach() + if (TARGET isle) + target_compile_options(isle PRIVATE /FI${PROJECT_SOURCE_DIR}/entropy.h) + endif() + if (TARGET config) + target_compile_options(config PRIVATE /FI${PROJECT_SOURCE_DIR}/entropy.h) + endif() endif() if(TARGET lego1)