How to deploy a C++ code as a macOS application?
Hi! I am quite new at programming. I am at the stage where I can write code in C++ as a command line tool with Xcode. What I can't really see is how can I go one step further and translate this code into an application. Could somebody please enligth me about the steps from code to macOS app?
Let's say I have a hello world program which gets user input as a string, and display it. But instead of std::cin and std::cout in the Terminal, I would like make a very basic UI and make this code sharable to other Mac users. The code itself is in C++ but I quess the UI should be in Swift in case of a Mac app. How to connect to 2 different language?
Thank you in advance!
MacBook Pro