make without makefile after cmake -
i try use c++ language bindings ev3dev lego brick: https://github.com/ddemidov/ev3dev-lang-cpp
the instruction follows:
mkdir build cd build cmake .. -dev3dev_platform=ev3 make
i running windows , have cmake , mingw available. after running cmake creates files in build
directory. however: there no makefile picked of make. wondering how iam supposed compile these bindings
on windows, cmake generates msvc solution default. check .sln
file in build directory.
the instructions linked assuming unix-ish platform, default create makefiles.
if want makefiles on windows, add -g "unix makefiles"
cmake
line.
if want use msvc compiler but work on command line, option -g "nmake makefiles"
, , calling nmake
after that.
make sure delete build directory before trying build new generator target. cmake can touchy that.
check cmake --help
list of available options. (especially generator targets platform-specific.)
Comments
Post a Comment