I want to build and run C program in kate editor ,can you please help me to solve this ,i need configuration for my editor how i can do it.i didnt find any tutorial
Asked
Active
Viewed 627 times
0
-
1Your question is by far too vague to get a good answer here. Do you want to use the Build plugin for this? Do you already have a Makefile or CMakeLists.txt to build your project? If not, you should first setup [a proper project structure](https://www.reddit.com/r/cpp/comments/aenxzi/cmake_project_templates/). – dhaumann Jan 23 '19 at 12:53
-
yes i dit it thanks but still have the same problem'make' is not recognized as an internal or external command, – MEEDMAN Jan 23 '19 at 14:09
-
Usually you create a build folder, then type `cmake ../ -DCMAKE_BUILD_TYPE=Debug` or so, and then you can type `make`. – dhaumann Jan 24 '19 at 16:37