|
From: David M. <dav...@gm...> - 2015-03-26 21:23:37
|
These steps work for me: 1) run MINGW64 shell 2) go to the interp2d directory 3) cmake -G "MSYS Makefiles" 4) make See transcript of my session: user@machine MINGW64 ~/interp2d-master $ cmake -G "MSYS Makefiles" -- The C compiler identification is GNU 4.9.2 -- The CXX compiler identification is GNU 4.9.2 -- Check for working C compiler: D:/msys64/mingw64/bin/gcc.exe -- Check for working C compiler: D:/msys64/mingw64/bin/gcc.exe -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler: D:/msys64/mingw64/bin/g++.exe -- Check for working CXX compiler: D:/msys64/mingw64/bin/g++.exe -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Found PkgConfig: D:/msys64/mingw64/bin/pkg-config.exe (found version "0.28") -- checking for module 'gsl >= 1.10' -- found gsl , version 1.16 -- Found Doxygen: D:/msys64/usr/bin/doxygen.exe (found version "1.8.9.1") -- Configuring done -- Generating done -- Build files have been written to: <snip>/interp2d-master user@machine MINGW64 ~/interp2d-master $ make Scanning dependencies of target interp2d_static [ 20%] Building C object CMakeFiles/interp2d_static.dir/bilinear.c.obj [ 40%] Building C object CMakeFiles/interp2d_static.dir/bicubic.c.obj [ 60%] Building C object CMakeFiles/interp2d_static.dir/interp2d.c.obj [ 80%] Building C object CMakeFiles/interp2d_static.dir/interp2d_spline.c.obj Linking C static library libinterp2d.a [ 80%] Built target interp2d_static Scanning dependencies of target interp2dtest [100%] Building C object CMakeFiles/interp2dtest.dir/test.c.obj Linking C executable interp2dtest.exe [100%] Built target interp2dtest user@machine MINGW64 ~/interp2d-master $ ./interp2dtest.exe Completed [1372/1372] -- David Macek |