You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
239 B

3 years ago
  1. #include "recording-window.hpp"
  2. #include <gtkmm/application.h>
  3. int main(int argc, char *argv[])
  4. {
  5. auto app = Gtk::Application::create(argc, argv, "xyz.dwayne.screenrecorder");
  6. RecordingWindow win;
  7. return app->run(win);
  8. }