Totally new to Kubuntu and KDevelop. I created a new No GUI(CMake) Simple CMake-based C++ application.
There is a red squiggly line under #include and I have the error
Included file was not found::iostream
Any answers I found via Google were still too advance for me. The kind of answer I need is "Click on this menu item, then this, then that, etc."
Thank you!
(EDIT: Added code)
#include <iostream>
int main(int argc, char **argv) {
std::cout << "Hello, world!" << std::endl;
return 0;
}