First, build dependencies:
make deps
then the app itself:
make osx
To build and run the app:
make run
Toggl built and signed app is available for download. Currently OSX 10.8 is the minimum version supported.
We’re building the Windows app using Visual Studio Express 2013 for Windows Desktop
First, build OpenSSL for Visual Studio. From Visual Studio Tools, open up a Developer Command Prompt. cd to the project folder, then
cd third_party\openssl
perl Configure VC-WIN32
ms\do_ms
nmake -f ms\ntdll.mak clean
nmake -f ms\ntdll.mak
Then open the solution in Visual Studio. Next, you’ll need to install the net-bugsnag package: from the Tools menu select NuGet Package Manager, then Package Manager Console. Into the console, type:
Install-Package Bugsnag.Library
From the same console, install Oauth2 related packages:
Install-Package Google.Apis.Auth;
Install-Package Google.Apis.Oauth2.v2;
We haven’t started work on Linux UI yet.
make test