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.

  1. cmake's project() command takes none parameter (no compiler/languages searched or activated)

    project(myproject none) 
  2. cmake's -p script mode if want take cmake cross-platform scripting environment


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -