Commit ab467e1f01be0eca64c3ccfc8123b67606906128

Authored by Jay Berkenbilt
Committed by Jay Berkenbilt
1 parent 8703e625

Convert build-mac to use cmake

Showing 1 changed file with 3 additions and 3 deletions
build-scripts/build-mac
... ... @@ -8,6 +8,6 @@ cd jpeg-*
8 8 make -k
9 9 sudo make install
10 10 cd ..
11   -./configure --enable-werror --enable-show-failed-test-output
12   -make -j$(nproc) -k
13   -make -k check
  11 +cmake -S . -B build -DCI_MODE=1 -DCMAKE_BUILD_TYPE=Release
  12 +cmake --build build -j$(sysctl -n hw.ncpu) -- -k
  13 +(cd build; ctest --verbose)
... ...