linux - Is it possible to use cmake without any compiler -
we have project made of python scripts , home-made tools. use cmake custom targets handle application of tools , python sripts , install resulting binary resources.
we use under gnu/linux , ms windows. works don't want force our users install compiler, visual studio under windows.
so, possible install , run cmake without compiler ? can use ninja build system.
yes, possible.
cmake's
project()
command takesnone
parameter (no compiler/languages searched or activated)project(myproject none)
cmake's
-p
script mode if want take cmake cross-platform scripting environment
Comments
Post a Comment