I am using CodeLite as an IDE for C++ in order to do some of the exercises for a book I am trying to read. As of now, I have generated a workspace, and have multiple projects (each one corresponding to one exercise). CodeLite was working ok until, for one of the projects, I began copying over some helper functions (these were within a header and C++ file). Once I did this however, my programs in the whole workspace no longer run. Everything will still compile and build, and the Run button isn't grayed out. I click the run button (or do ctrl+F5) and nothing happens.
I have tried to restart my computer, and CodeLite, as well as close and reopen the specific workspace, but the issue persists. I should note that this issue does not appear in other workspaces, and only started once I began adding in the helper functions in the form of the header and cpp files.
I also wanted to add that I was unable to directly add the helper functions, and had to copy paste the contents individually into my own files. I suppose this is because the "Add Existing File" feature only lets you view those files in a separate directory, though I'm not too sure.
In any case, here is a picture of my workspace, though I'm not really sure if that will be of much help:
Also, here is how I am including these helper functions in my code:
#include <iostream>
#include <iomanip>
#include <math.h>
#include "SAT_Const.h"
#include "SAT_Kepler.h"
#include "SAT_RefSys.h"
#include "SAT_Time.h"
#include "SAT_VecMat.h"
I can't really find any workspace settings which would incur such behavior, but please let me know if you'd like for me to include more information.
Thanks!