pulsar/native/main_helper_mac.mm
2012-08-29 15:36:01 -07:00

9 lines
249 B
Plaintext

#include "include/cef_app.h"
#include "atom_cef_app.h"
int main(int argc, char* argv[]) {
CefMainArgs main_args(argc, argv);
CefRefPtr<CefApp> app(new AtomCefApp);
return CefExecuteProcess(main_args, app); // Execute the secondary process.
}