diff --git a/.github/workflows/cmake-windows.yml b/.github/workflows/cmake-windows.yml index 995429068..9ae6d8272 100644 --- a/.github/workflows/cmake-windows.yml +++ b/.github/workflows/cmake-windows.yml @@ -39,7 +39,7 @@ jobs: export PATH=${{github.workspace}}/llvm-mingw-20230320-ucrt-ubuntu-18.04-x86_64/bin:$PATH mkdir build_windows cd build_windows - cmake -DCMAKE_TOOLCHAIN_FILE=${{github.workspace}}/cross-compile/freedv-mingw-llvm-x86_64.cmake .. + cmake -DBOOTSTRAP_LPCNET=1 -DCMAKE_TOOLCHAIN_FILE=${{github.workspace}}/cross-compile/freedv-mingw-llvm-x86_64.cmake .. - name: Build freedv-gui shell: bash diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4d0d1416e..ba8f79c38 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -62,9 +62,9 @@ endif(APPLE) # Add build dependencies for internally built external libraries. if(USE_INTERNAL_CODEC2) if(APPLE) - add_dependencies(FreeDV build_codec2 build_lpcnetfreedv) + add_dependencies(FreeDV build_codec2) else(APPLE) - add_dependencies(freedv build_codec2 build_lpcnetfreedv) + add_dependencies(freedv build_codec2) endif(APPLE) endif()