Skip to content

Commit

Permalink
fmk - adding output in main.cpp for compile level options
Browse files Browse the repository at this point in the history
  • Loading branch information
fmckenna committed Oct 3, 2024
1 parent 8369a7d commit e3f9644
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ int main(int argc, char *argv[])

#ifdef _SC_RELEASE

//Setting Google Analytics Tracking Information
qDebug() << "RELEASE BUILD";
//Setting Google Analytics Tracking Information
qDebug() << "compiled with _SC_RELEASE";
GoogleAnalytics::SetMeasurementId("G-CPFD5EFJ4Y");
GoogleAnalytics::SetAPISecret("vxNbZfRdRUyVx3fBpdUXxg");
GoogleAnalytics::CreateSessionId();
Expand All @@ -222,8 +222,8 @@ int main(int argc, char *argv[])

#ifdef _ANALYTICS

//Setting Google Analytics Tracking Information
qDebug() << "RELEASE BUILD";
//Setting Google Analytics Tracking Information
qDebug() "compiled with: ANALYTICS"
GoogleAnalytics::SetMeasurementId("G-CPFD5EFJ4Y");
GoogleAnalytics::SetAPISecret("vxNbZfRdRUyVx3fBpdUXxg");
GoogleAnalytics::CreateSessionId();
Expand All @@ -232,7 +232,8 @@ int main(int argc, char *argv[])
#endif

#ifdef _GA_BEFORE


qDebug() "compiled with: _GA_BEFORE"
// Opening a QWebEngineView and using github to get app geographic usage
QWebEngineView view;
view.setUrl(QUrl("https://nheri-simcenter.github.io/EE-UQ/GA4.html"));
Expand All @@ -252,6 +253,7 @@ int main(int argc, char *argv[])
#ifdef _GA_AFTER

// Opening a QWebEngineView and using github to get app geographic usage
qDebug() "compiled with: _GA_AFTER"
QWebEngineView view;
view.setUrl(QUrl("https://nheri-simcenter.github.io/EE-UQ/GA4.html"));
view.resize(1024, 750);
Expand Down

0 comments on commit e3f9644

Please sign in to comment.