diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d11ffcd..6fb1ec3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: ref: ${{ github.event.inputs.branch || github.event.client_payload.branch || github.ref }} - name: Configure project with CMake - run: cmake -B build/output -S . -G "${{ matrix.generator }}" -DDAQMODULES_LT_STREAMING_ENABLE_TESTS=ON -DCMAKE_BUILD_TYPE=Debug + run: cmake -B build/output -S . -G "${{ matrix.generator }}" -DDAQMODULES_LT_STREAMING_ENABLE_TESTS=ON -DDAQMODULES_LT_STREAMING_DEBUG_WARNINGS_AS_ERRORS=ON -DCMAKE_BUILD_TYPE=Debug - name: Build project with CMake run: cmake --build build/output --config Debug diff --git a/changelog/changelog b/changelog/changelog index b532ef9..09c94c8 100644 --- a/changelog/changelog +++ b/changelog/changelog @@ -2,6 +2,8 @@ ## Bug fixes +- [#7](https://github.com/openDAQ/LTStreamingModulesLegacy/pull/7) Fix appending dependent boost components. + ## Documenation ## Misc diff --git a/external/boost/Boost.cmake b/external/boost/Boost.cmake index 3439648..e1aa8df 100644 --- a/external/boost/Boost.cmake +++ b/external/boost/Boost.cmake @@ -5,13 +5,13 @@ opendaq_append_required_boost_components( beast ) -if (${REPO_OPTION_PREFIX}_ENABLE_SIGGEN_INTEGRATION_TESTS) +if (DAQMODULES_LT_STREAMING_ENABLE_SIGGEN_INTEGRATION_TESTS) opendaq_append_required_boost_components( program_options ) endif() -if (${REPO_OPTION_PREFIX}_ENABLE_CLIENT) +if (DAQMODULES_LT_STREAMING_ENABLE_CLIENT) opendaq_append_required_boost_components( uuid )