build.bat 75 B

123456
  1. echo off
  2. mkdir build
  3. cd build
  4. cmake .. -G "MinGW Makefiles"
  5. make -j4
  6. cd ..