Hacker News new | ask | show | jobs
by cycomanic 1514 days ago
Why do I need to run a gui or ncurses UI if I just want to do the equivalent of configure && make && make install?
1 comments

The equivalent of this is

    cmake -S source_folder -B build_folder 
    cmake --build build_folder
    cmake --install build_folder

You don't need to run a GUI at all for this, I don't see how you could infer this from the previous messages