Skip to content

Commit

Permalink
Try to activate verbose(7).
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed Jan 8, 2025
1 parent 6686927 commit a55609b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:
- name: Build Faust with CMake
run: |
cd build
mkdir faustdir
cd faustdir
cmake .. -DBACKENDS=regular.cmake -DTARGETS=win-ci.cmake -DCMAKE_VERBOSE_MAKEFILE=on
make
# make -C build cmake BACKENDS=regular.cmake TARGETS=win-ci.cmake -DCMAKE_VERBOSE_MAKEFILE=on
# make -C build
# cd build
# mkdir faustdir
# cd faustdir
# cmake .. -DBACKENDS=regular.cmake -DTARGETS=win-ci.cmake -DCMAKE_VERBOSE_MAKEFILE=on
# make
make -C build cmake BACKENDS=regular.cmake TARGETS=win-ci.cmake -DCMAKE_VERBOSE_MAKEFILE=on
make -C build
2 changes: 2 additions & 0 deletions build/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ if (WIN32 OR MSYS)
set (CURL_INCLUDE_DIR "D:/a/faust/faust/libcurl/include")
set (CURL_LIBRARY "D:/a/faust/faust/libcurl/lib/libcurl.a")
set (CURL_LIBRARIES "D:/a/faust/faust/libcurl/lib/libcurl.dll.a")
# Enable verbose output for the makefile
set(CMAKE_VERBOSE_MAKEFILE ON)
endif()

find_package(CURL REQUIRED)
Expand Down

0 comments on commit a55609b

Please sign in to comment.